How to count the frequency of words in excel

D

deedee

Hello everybody,

I would like to know a simple way to count the frequency of words in excel.

Thank you in advance
 
R

Ron Rosenfeld

Hello everybody,

I would like to know a simple way to count the frequency of words in excel.

Thank you in advance

There is one word in "Excel" :)

To count the number of words in a string in a single cell, you can count the
number of <space>'s and add one:

=len(a1) - len(substitute(a1," ","")) +1

If you want something else, please post back with more detail.
--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top