How to add up letters to equal a number value.

F

FrizB

I'm sure this is easy... I have two columns that contain different letters. I
want to create a cells that will add up all the like letters,(the letters
represent abbreviations for different payor sources) i.e. How many A's, how
many K's, etc. I've used SUMPRODUCT, but get a NAME?error. I guess I don't
know how to represent the letters as numbers. Please help, I'm going nuts!!!
 
J

Jacob Skaria

'number of k's in column A
=COUNTIF(A:A,"A")

'number of K's in column A
=COUNTIF(A:A,"K")

If 'a' or 'k' is within the cell then try
=COUNTIF(A:A,"*A*")


If this post helps click Yes
 

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