Text Counting

K

krs1040

I am looking for a simple function to add up the number of cells filled
with a certain word in a list or column (see below)

Column A

1 Apple
2 Orange
3 Pear
4 Apple

I want a function that will return the number 2 as I count the number
of times “Apple” appears in Column A
 
G

Guest

Try this:

=COUNTIF(A1:A100,"Apple")

or, if you want to also count "Apple Pie" and "Green Apple" as well:

=COUNTIF(A1:A100,"*Apple*")

HTH,
Elkar
 

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

Top