• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

word count in excel

jthamizhirai

New Member
dear all

i would like to count the number of words in excel.

is there a function which i can use.

if i have to count in excel"this is a test"

how do i do it.thanks in advance

jay
 
Try:

=IF(LEN(TRIM(A1))=0,0,LEN(TRIM(A1))-LEN(SUBSTITUTE(A1," ",""))+1)
 
Back
Top