Adding up non numerical values

W

Wooster

In one column I will have a variety of letters. (A, B, C etc) In another
cell I want to have the sum of all the A's in that column. In a different
cell I want to have the number of B's in the column - and so on. How do I do
this?
Thanks in advance!
 
P

Pete_UK

Try this:

=COUNTIF(A1:A100,"A")
=COUNTIF(A1:A100,"B")

etc., where I have assumed your data is in A1:A100.

Hope this helps.

Pete
 
W

Wooster

Works perfectly. Thanks

Pete_UK said:
Try this:

=COUNTIF(A1:A100,"A")
=COUNTIF(A1:A100,"B")

etc., where I have assumed your data is in A1:A100.

Hope this helps.

Pete
 

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