Countif function

  • Thread starter Thread starter Daniel Bonallack
  • Start date Start date
D

Daniel Bonallack

I'm sure this is as easy as falling off a log for most of
you...

How can I count how many entries in a column begin with
the letter "A"?

Thanks in advance.

Daniel
 
Daniel Bonallack said:
I'm sure this is as easy as falling off a log for most of
you...

How can I count how many entries in a column begin with
the letter "A"?

Thanks in advance.

Daniel

One way:
=SUMPRODUCT((LEFT(A1:A100,1)="A")*1)
 
Back
Top