Sum If

S

Scoob

I have a large table of data that I want to sum, based on 2 criteria.
A small example of table as follows:

Quarter Type Value Resource

Q1 Fire 2,000 John
Q2 Project 1,500 Bob
Q1 Project 2,000 Sam
Q3 Fire 2,000 Louise
Q1 Fire 1,000 Shirley
Q1 Project 5,000 Jill

What I want to do is total up the the value of Fire for Q1.
 
P

Pete_UK

You can only use SUMIF with a single condition, so try this instead:

=SUMPRODUCT((A1:A100="Q1")*(B1:B100="Fire")*(C1:C100))

Adjust ranges to suit, but you can't use full column references prior to
Excel 2007.

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