Excel If Statement ??

C

Clint Wagner

Quick One for the guru's:

I am trying to write an IF/Count statement that goes like this:

Count the number of cells in Column A that contain the word "best". Any
clues as to the best way to go about this?

Clint
 
M

merjet

I am trying to write an IF/Count statement that goes like this:
Count the number of cells in Column A that contain the word "best". Any
clues as to the best way to go about this?

As a worksheet function:

=COUNTIF(A:A,"=best")

HTH,
Merjet
 
Top