What is the formula to count cells with specific text

G

Guest

What is the format of the excel function to count cells with specific text in the cell. I have a column on my spreadsheet that has some data in the cells starting with the letters "wo". There are more letters and numbers after the letters "wo". I need to count the cells that start with the lettes "wo". What is the function and format of the command to count the cells on my spreadsheet with the letters "wo"

Thanks Confused
 
P

Paul B

confused, here is one way, =COUNTIF(A1:A10,"wo*")

--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2000 & 97
** remove news from my email address to reply by email **
Confused said:
What is the format of the excel function to count cells with specific text
in the cell. I have a column on my spreadsheet that has some data in the
cells starting with the letters "wo". There are more letters and numbers
after the letters "wo". I need to count the cells that start with the
lettes "wo". What is the function and format of the command to count the
cells on my spreadsheet with the letters "wo"?
 
B

Bob Phillips

Just in case you only want lower-case 'wo' not all combinations, you can use

=SUMPRODUCT(--(NOT(ISERROR(FIND("wo",A1:A10)=1))))

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

Confused said:
What is the format of the excel function to count cells with specific text
in the cell. I have a column on my spreadsheet that has some data in the
cells starting with the letters "wo". There are more letters and numbers
after the letters "wo". I need to count the cells that start with the
lettes "wo". What is the function and format of the command to count the
cells on my spreadsheet with the letters "wo"?
 

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