I have been trying to use a Text-join formula to pull together comments based on whether there is certain text in adjacent cells. I've used this formula which has worked fine:
=TEXTJOIN(" "&CHAR(10)&CHAR(10),"TRUE",IF(CA2:CA100="Yes",BZ2:BZ100,""))
However, is there a way to stop the formula returning a "0" if the cell in column BZ
is blank?
I've looked at other threads and tried the following but can't seem to get it right?
=TEXTJOIN(" "&CHAR(10)&CHAR(10),"TRUE",IF(AND(CA2:CA100="Yes",BZ2:BZ100<>""),'Main Data'!BZ2:BZ100,""))
Many thanks!