How do I count the number of TEXTJOIN functions in a spreadsheet?
Hello
How do I calculate the number of TEXTJOIN?
Thanks Ryszard
[Re-Titled by Moderator]
MacBook Air 13″, macOS 15.4
Hello
How do I calculate the number of TEXTJOIN?
Thanks Ryszard
[Re-Titled by Moderator]
MacBook Air 13″, macOS 15.4
The result of TEXTJOIN is a null string "" if there is nothing to join. COUNTA is including the null strings, which is why it is counting what look like blank rows. Try COUNTIF(I,"<>") . This will count rows that are not null strings (or blank).
Replace COUNT with COUNTA and it returns how many values you have in column I
I replicated your scheme and it works for me it gives me back 5
Do you have an example for me?
Obviously COUNT.VALUES is in Italian, but it corresponds to COUNTA
Works perfect
Thanks
How do I count the number of TEXTJOIN functions in a spreadsheet?