Baseball Stat sheet

D

Deborah

For a baseball stat sheet, I have a Total page that
sums cells (eg At Bats) from each individual Game1, Game2
etc. worksheet. I don't want to have to modify the Total
worksheet formulas every time I add another Game
worksheet. Is there some way to sum worksheets using a
common prefix (=sum(Game&!D17)) or some other function I
can use? Thanks.
 
F

Frank Kabel

Hi
one way:
- create a first and last sheet (you could leave them empty). Now only
insert your new sheets between these two sheets and use the following
formula
=SUM('start:end'!D17)
for an overall total

If you need this for each individual sheet try the following formula:
=INDIRECT("'Game" & ROW(1:1) & "'!D17")
and copy this down
 
D

Deborah

Thank you so much. That worked great!
Deborah
-----Original Message-----
Hi
one way:
- create a first and last sheet (you could leave them empty). Now only
insert your new sheets between these two sheets and use the following
formula
=SUM('start:end'!D17)
for an overall total

If you need this for each individual sheet try the following formula:
=INDIRECT("'Game" & ROW(1:1) & "'!D17")
and copy this down

--
Regards
Frank Kabel
Frankfurt, Germany



.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top