Multi-conditional sum across multiple sheets.

cartja

New Member
Joined
Oct 5, 2011
Messages
5
=SUMPRODUCT(SUMIF(INDIRECT(""&list&"!J$22"),"=1",INDIRECT(""&list&"!J4")))

This formula works great for summing cell J4 across 94 sheets based on the condition that J22=1. However, I can't figure out how to add a second condition - K22=1.

If anyone could help me modify this formula so that it will check both conditions, (cell1=1, AND Cell2=1) before adding j4 to the sum across 94 sheets I would be very happy!.

Oh, sheet names are housed in a list called 'list'.

Thanks,

j-bob
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Hi j-bob
Welcome to the board

Please always post your excel version. One easy way is to add it to your signature.

If you have excel 2007+ you can try the same formula using SUMIFS().
 
Upvote 0
Thank you pgc01! This worked great. I didn't know sumifs exited. It sure adds a new dimesion of computing!

I am using excel 2007.

Do you know why the formula won't drag across or down as a dynamic DNA? The way its writen now, its acting like a specific refernce formula.

Thanks,

j-bob
 
Upvote 0
Hi j-bob

I'm glad it helped.

Do you know why the formula won't drag across or down as a dynamic DNA? The way its writen now, its acting like a specific refernce formula.

The only thing that changes when you drag formulas are relative addresses. What you have in your formula are strings.

For ex. if you have in a cell ="A1", this won't change when you drag the formula, because it's a string.

If you want the formula to change when you drag it, you have to introduce relative references in it.

For ex., in the formula you posted you had the strings "J$22" and "J4", that would then be converted into references by Indirect(). If you want the row in J4 to change when you drag it, you can use:

=SUMPRODUCT(SUMIF(INDIRECT("'"&List&"'!J$22"),"=1",INDIRECT("'"&List&"'!J"&ROW(J4))))

Now when you drag the formula the Row(J4) will change, thus changing the input string for Indirect().

Hope it's clear.

Please test.
 
Upvote 0

Forum statistics

Threads
1,214,918
Messages
6,122,257
Members
449,075
Latest member
staticfluids

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top