T
TGalin
Is there a formula that will count how many times a word that is 4 characters
long appears in column M?
long appears in column M?
Rick Rothstein said:Here is another way to do what you want using this array-entered formula...
=COUNT(IF(LEN(A1:A100)=4,1))
**Commit formula using Ctrl+Shift+Enter, not just Enter by itself
Mike H said:Maybe
=SUMPRODUCT(((LEN(A1:A22)=4)+0)*(ISTEXT(A1:A22)))
Mike
Rick Rothstein said:We can save two characters by using this array-entered formula instead of
the one I posted originally...
=SUM(IF(LEN(A1:A100)=4,1))
**Commit formula using Ctrl+Shift+Enter, not just Enter by itself