date from multiple worksheets

G

Guest

Each day, I imput a new month-date-report in to a new worksheet, named as the
day of the month correponding to the data thus far. For instance, if
tomorrow is 10-17-07, then the tab for the worksheet is named "7".

I would like to create a summary page that will track the new monthly total,
which is in the same location on the same page. I have no problem writing
the search function to find the data I want, but I would like to avoid having
to edit each formula, ie "=sumif('1'!E:E . . ." "=sumif('2'!E:E . . ." all
the way to "sumif('31'!E:E . . ."

Is there anyway to set an array over multiple worksheets or to draft the
formula in such a way that the sheet name will automatically grow when doing
a fill?
 
G

Guest

"=sumif('1'!E:E . . ."

In the start cell, replace the above
with this equivalent construct using INDIRECT & ROWS:
=sumif(indirect("'"&rows($1:1)&"'!E:E"),...
Copy down 31 rows. The ROWS part will increment to return the required
sheetnames: 1,2,3... as you copy down.

If you are copying it across from the start cell,
replace ROWS($1:1) in the construct with:

COLUMNS($A:A)
 

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