It depends on your actual sheet names, what is the best method/formula to use...
If you have only sheets with same name (except for number) as in your example, then you can use this:
=SUMPRODUCT(SUMIF(INDIRECT("'Sept Wk "&ROW(INDIRECT("1:5"))&"'!B1:H1"),$B$2,INDIRECT("'Sept Wk "&ROW(INDIRECT("1:5"))&"'!B5:H5")))
And you would just adjust the B5:H5 to extract your relevant data...
If your sheets are inconsistently named, you can employee a free addin called Morefunc.xll downloadable from here... http://download.cnet.com/Morefunc/30...-10423159.html
and use formula
=SUMPRODUCT(--(THREED('Sept Wk 1:Sept Wk 5'!$B$1:$H$1)=$B$2),THREED('Sept Wk 1:Sept Wk 5'!$B5:$H5))
which uses sheet range (first to last)
again adjusting B5:H5 as needed
Bookmarks