A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
As an array formula confirmed with Ctrl+Shift+Enter:
=TEXTJOIN(", ",TRUE,IF(($A$2:$A$300=H2)*($C$2:$C$300<>""),$C$2:$C$300,""))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
The current formula I use for text join is below. However, if there is a blank cell in column C, I get a zero in my cell.
Example. Medical Specialist, Support Specialist 0, 0
Is it possible to put an If error on this formula to eliminate zeros or do another function?
=TEXTJOIN(", ",TRUE,IF($A$2:$A$300=H2,$C$2:$C$300,""))
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Answer accepted by question author
As an array formula confirmed with Ctrl+Shift+Enter:
=TEXTJOIN(", ",TRUE,IF(($A$2:$A$300=H2)*($C$2:$C$300<>""),$C$2:$C$300,""))