Using "IF" statements...my problem

  • Thread starter Thread starter xyzer
  • Start date Start date
X

xyzer

One column has one letter in each cell, something between A through E,
basically randomly occuring down
the entire column. Next to each cell in that column is a number value
associated with the letter, but of course each nominal letter (not each
instance) may be associated with x different numbers/values, depending
on how many times is shows up in the column. ANyway, how do I use "IF,
then" statements to sum, say, all the numbers associated with "A"?
 
Hi!

Try this:

Letters in column A, numeric values in column B.

=SUMIF(A:A,"A",B:B)

OR:

C1 = A

=SUMIF(A:A,C1,B:B)

Biff
 

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

Back
Top