Sumproduct pulling from 17 other sheets

Berk21

New Member
Joined
Feb 20, 2010
Messages
9
I just got one week working, not sure how i can pull from multiple sheets.

Sheets are week 1 : week 17

works:
=SUMPRODUCT(--('Week 1 '!$C$9:$C$18="name"),--('Week 1 '!$I$9:$I$18="L"))

doesnt work:
=SUMPRODUCT(--('Week 1 :[Week 17]Week 17'!C$9:$C$18="name"),--('Week 1 :[Week 17]Week 17'!I$9:$I$18="L"))

One other question i have is kind of simialr to this formula.
where "name" data is placed, how can i have it look and determine 7 specfic names placed in that same ceall?...Joe,John,Ben,Sam etc....

if an example is needed, let me know
Thanks in advance
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
I just got one week working, not sure how i can pull from multiple sheets.

Sheets are week 1 : week 17

works:
=SUMPRODUCT(--('Week 1 '!$C$9:$C$18="name"),--('Week 1 '!$I$9:$I$18="L"))

doesnt work:
=SUMPRODUCT(--('Week 1 :[Week 17]Week 17'!C$9:$C$18="name"),--('Week 1 :[Week 17]Week 17'!I$9:$I$18="L"))

One other question i have is kind of simialr to this formula.
where "name" data is placed, how can i have it look and determine 7 specfic names placed in that same ceall?...Joe,John,Ben,Sam etc....

if an example is needed, let me know
Thanks in advance
Try, with A2 housing a name of interest...

Rich (BB code):
=SUMPRODUCT(
  COUNTIFS(INDIRECT("'Week "&ROW(INDIRECT("1:17"))&"'!C9:C18"),A2,
    INDIRECT("'Week "&ROW(INDIRECT("1:17"))&"'!I9:I18"),"L"))

which requires Excel 2007 or later.
 
Upvote 0
thanks for all the information! i will start testing and will follow up.

Im going to close do to another post i regretably posted, unaware of cross posting. Sorry.

Thanks again for these ideas.
 
Upvote 0

Forum statistics

Threads
1,215,831
Messages
6,127,138
Members
449,361
Latest member
VBquery757

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