Counts

G

Guest

How do I do a count in a column. I have a column with A, B, and P in it. I
want to count how many A's, B's, and P's.

Thanks,
Nordic
 
R

Rick Rothstein \(MVP - VB\)

How do I do a count in a column. I have a column with A, B,
and P in it. I want to count how many A's, B's, and P's.

Number of A's: =COUNTIF(A1:A100,"=A")

Number of B's: =COUNTIF(A1:A100,"=B")

Number of P's: =COUNTIF(A1:A100,"=P")

Rick
 
T

T. Valko

Try this:

Letters in the range A1:A100

C1 = A
C2 = B
C3 = P

Enter this formula in D1 and copy down to D3:

=COUNTIF(A$1:A$100,C1)
 

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