Sum function across multiple spreadsheets

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to create a summart spreadsheet that will total $ figures from
various excel files.

Most of the "target cells" that contain the $ figure to be added is in
itself a total of cells within that spreadsheet.

I am not able to create this as I normally would.

Any suggestions would be appreciated.
 
Have your total in the same cell on each worksheet. Then
=sum(sheet1:sheet5!a1)
 
Thank - However,I need to show a line item for each total pulled from the
respective spreadsheet and then calculate a grand total.
 
Thank - However,I need to show a line item for each total pulled from
the respective spreadsheet and then calculate a grand total.

Then you'll need to use the INDIRECT function.

Something on the order of:
=INDIRECT("sheet"&(row()-5)&"!A1")
to get each line item, then calculate the grand total as usual.
 

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

Back
Top