sum adjacent columns based on variable

  • Thread starter Thread starter jhatlestad
  • Start date Start date
J

jhatlestad

I am trying to figure out how to write a formula to do the following:

Let's say in Column A I enter in character data (Item 1, Item 2, Item
3, etc) and in Column B I enter in numerical data (25.50, 52.30,
43.02, etc). What I want to be able to do is:

If the data in Column A = Item 1, take the Sum of the adjacent data in
Column B.

So if my spreadsheet looks like this:

Item 1 25.50
Item 2 52.30
Item 1 43.02

and I run the formula above, it would output this: 68.52

If anyone could help me with this Excel formula, that would be great.
 
I am trying to figure out how to write a formula to do the following:

Let's say in Column A I enter in character data (Item 1, Item 2, Item
3, etc) and in Column B I enter in numerical data (25.50, 52.30,
43.02, etc). What I want to be able to do is:

If the data in Column A = Item 1, take the Sum of the adjacent data in
Column B.

So if my spreadsheet looks like this:

Item 1 25.50
Item 2 52.30
Item 1 43.02

and I run the formula above, it would output this: 68.52

If anyone could help me with this Excel formula, that would be great.

=SUMPRODUCT((A1:A10="Item1")*(B1:B10))
 
=SUMIF(A:A,"Item 1",B:B)

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

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