Help please?

H

H4Fi

I need a formula that will look at a row of letters and find ot how man
"W"s there are. Thank
 
B

BenjieLop

H4Fi said:
I need a formula that will look at a row of letters and find ot how man
"W"s there are. Thanks

=countif(A1:A100,"W")

where A1:A100 is the range where you have your letters
 
J

JE McGimpsey

For a row, use

=COUNTIF(1:1, "W")

If the "W" could occur within other text in the cell, use

=COUNTIF(1:1,"*W*")
 
Top