EXCEL: wordcount within cell
And if I have 2 words in the cell?
Borrowing from Mike's solutions:
=IF(A1="",0,LEN(TRIM(A1))-LEN(SUBSTITUTE(TRIM(A1)," ",""))+1)
--
John C
"Teethless mama" wrote:
=LEN(A1)
"CPAZO" wrote:
How do i set up wordcount within cell?
|