Formulas Across Multiple Worksheets

ultra429

New Member
Joined
Jun 9, 2011
Messages
3
I have two array formulas that on one total page pull from only one worksheet. I have another that can use the same essential formulas, but must pull across several worksheets.

Here is the first, where bolded is where I need multiple worksheets:

=SUM(('Orange Co-10'!$E$2:$E$200="John Smith")*('Orange Co-10'!$G$2:$G$200="Sales Incomplete"))

and

=SUMPRODUCT(--('Orange Co-10'!$E$2:$E$200="John Smith"),--('Orange Co-10'!$L$2:$L$200 < 4))

I need both of these to pull across 5-6 worksheets. I figured out how to do it by searching Google with one criteria and with the indirect/direct setup:

(ex:
=SUMPRODUCT(COUNTIF(INDIRECT("'"& {"Centric-E7","East Bay-E7","Sacramento-E7","San Francisco-E7","Santa Clara-E7","Other-E7"} &"'!E2:E200"),"Ashley Miller"))

But I am not well-versed enough to be able to figure out the code on my own.

Any help is appreciated. :nya:
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
If you're using Excel 2007 or later, try...

=SUMPRODUCT(COUNTIFS(INDIRECT("'"&{"Centric-E7","East Bay-E7","Sacramento-E7","San Francisco-E7","Santa Clara-E7","Other-E7"}&"'!E2:E200"),"John Smith",INDIRECT("'"&{"Centric-E7","East Bay-E7","Sacramento-E7","San Francisco-E7","Santa Clara-E7","Other-E7"}&"'!G2:G200"),"Sales Incomplete"))
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,730
Members
452,939
Latest member
WCrawford

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