formula too long error

G

Guest

I have a spreadsheet with 50 tabs. I have a sumary tab that I will like to
show running totals, however, when I try to use a formula, i am getting a
"formula too long error". Is there another way for me to have running totals
without getting this error?
 
D

Dave Peterson

Say your quantities are in column E of each sheet.

Add a row at the top and put this in E1:
=sum(e2:E65536)
(Use a number that will be larger than your largest list)

Then insert two new worksheets--
one at the far left of the detail sheets and one at the far right of the detail
sheets.

Call the one at the far left: Start
call the one at the far right: Finish

Then move your summary worksheet outside those two "sandwich" sheets.

Put this in any cell you want:
=sum(start:finish!e1)

You'll be able to move any sheet out of the "sandwich" if you want to play what
if games.
 
G

Guest

Thank you very much for your help.

Dave Peterson said:
Say your quantities are in column E of each sheet.

Add a row at the top and put this in E1:
=sum(e2:E65536)
(Use a number that will be larger than your largest list)

Then insert two new worksheets--
one at the far left of the detail sheets and one at the far right of the detail
sheets.

Call the one at the far left: Start
call the one at the far right: Finish

Then move your summary worksheet outside those two "sandwich" sheets.

Put this in any cell you want:
=sum(start:finish!e1)

You'll be able to move any sheet out of the "sandwich" if you want to play what
if games.
 

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

Similar Threads

Forumula too long 3
Excel data collection 2
Formula too long 5
Excel Excel Formula OFFSET maybe? 1
Formula to long error 2
Concatenate maximum number of parameters 4
getting results on separate tabs 1
sheet formula 1

Top