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

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
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,860
Messages
6,127,378
Members
449,382
Latest member
DonnaRisso

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