Hi!
If your sheet names are completely unique (Sales,Prod,Supply), you'll need
separate formulas. (or, list the sheet names but that is no better than just
using separate formulas if you only have 12 to do)
B1 = sheet name = Sales
B2 = sheet name = Prod
B3 = sheet name = Supply
=INDIRECT(B1&"!A1")
Then copy down. This would be equivalent to:
=Sales!A1
=Prod!A1
=Supply!A1
If your sheet names have a common identifier with a sequence like the
default sheet names (Sheet1,Sheet2,Sheet3), then you can use a single
formula that when copied increments:
=INDIRECT("sheet"&ROWS($1:1)&"!A1")
=INDIRECT("sheet"&ROWS($1:2)&"!A1")
=INDIRECT("sheet"&ROWS($1:3)&"!A1")
This is equivalent to:
=Sheet1!A1
=Sheet2!A1
=Sheet3!A1
Biff