Help please?

  • Thread starter Thread starter H4Fi
  • Start date Start date
H

H4Fi

I need a formula that will look at a row of letters and find ot how man
"W"s there are. Thank
 
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
 
For a row, use

=COUNTIF(1:1, "W")

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

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