sumif problem

V

vincent135

is it possible to have muti-columes range in the sumif formula
e.g =sumif(a1:c5,xxx,xxx)

then have multiple criteria?
e.g =sumif(xxx, first colum equals "a" & second colum >1000, xxx)

how should i write it?

thx
 
G

Guest

Hi

You could do this using SUMPRODUCT:
=SUMPRODUCT((A2:A100="criteria")*(B2:B100="some more")*(C2:C100))
If you post exactly what you, we can help you. With SUMPRODUCT you can't use
full columns as ranges (A:A) and the ranges must be the same size.
There is some more information on this here:
http://www.xldynamic.com/source/xld.SUMPRODUCT.html

Hope this helps.
Andy.
 

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

Similar Threads


Top