vote up 1 vote down star

Hi,

I just learned to use the SUMIF function in Excel, I'm using Excel 2003.

My condition is like this:

for a given row on Sheet1, i use the SUMIF function to see if the value from the first cell of that row is on a list of historical values in Sheet2.

That will basically summarize all the values on my historical sheet and group them by my A1 cell name on Sheet2.

But I need a second condition so that I can group rows by month also, and the SUMIF does not seem to allow for a second condition or an AND to concatenate a second clause.

Please, this is urgent and have been working on it for three hours, can't get it to work.

Any help is greatly appreciated.

Thanks.

flag

38% accept rate

7 Answers

vote up 0 vote down

Hi you can google.. for samples, then you can get idea and implement as given in following url

OZGrid mrexcel

link|flag
vote up 0 vote down

Try to add another SUMIF function which excludes those cells which you don't want to be SUMMed up & remove it from the main SUMIF.

e.g. SUMIF(all cells which fits large criteria) - SUMIF(all cells which are part of small criteria).

link|flag
vote up 1 vote down

Use an array formula

link|flag
vote up 1 vote down

Assumptions:

Dates are in column B

Rows are 5:29

historical list in a range name 'Historical'

Month to test is in a range name 'rngMonth'

=SUMPRODUCT((NOT(ISNA(MATCH(A5:A29,Historical,FALSE))))*(MONTH(B5:B29)=rngMonth)*(C5:C29))
link|flag
vote up 0 vote down

use array formulas like this: {=sum(If(sheet2!A1:A50=sheet1!A1,if(sheet2!B1:B50=Sheet1!B1,Sheet2!C1:C50)))} basically you nest your if statements inside a sum statement, then press ctrl-shift-enter to make it an array formula. as Jon Fournier posted, http://www.cpearson.com/excel/ArrayFormulas.aspx is a good resource

link|flag
vote up 0 vote down

Alternate: on the sheet with historical data, add a column that concatenates the two columns you want to use as the combined conditions. For example, suppose one condition column is range-named "Month", the other condition column is range-named "Name":

The new column contains the following formula:

=Month&" "&Name

Name this column (for example, "Criteria") then use that name in the SUMIF. For example, name it Conditions, then in the final sum cell, put a formula like this:

=SUMIF(Criteria,"January Biff",ValsToBeSummed)
link|flag
vote up 0 vote down

This list was just published recently on LinkedIn in one of the Excel groups.

It explains 7 different ways to do what you are asking.

http://www.excel-spreadsheet-authors.com/sumif-multiple-7-ways.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.