How do I total non-numerical data

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have data of non-numerical in nature that I want to sort get totals. How
do I do this and report the results?
 
Use COUNTIF:


If column A has:

dog
dog
cat
cat
cat
fish
fish

then countif(A1:A7,"dog") will give 2, etc.
 
Back
Top