Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Running total between sheets

Hi, I know some about Excel but I need help. Thanks in advance!

I am trying to keep a running total on a "Master Sheet". The other
worksheets would have a cell that i would need to summed up between
all the sheets and outputted on the Master sheet.

for example:
Sheet1 A3 + Sheet2 A3 + Sheet3 A3.........

the macro i have already is:

Function SumTotal()
Const r = "A1"
Dim ST As Range
t = 0
For i = 1 To 3
Set ST = Sheets(i).Range(r)
t = t + ST.Value
Next i
SumTotal = t
End Function

This works fine, The number of sheets i would have would be around
250....
I'm sort of using this as a form that the user would record an
incident on a sheet and would keep a running total of certain things
on the Master Sheet. If anyone knows of any easier way of doing this,
please help. Thanks!

also, would I be able to name the Sheets and still be able to work for
example Sheet1 = master, Sheet2 = Incident1, Sheet3 = Incident2....etc
etc. Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,344
Default Running total between sheets

Hi,

Without VBA you can write the formula:

=SUM(Sheet1:Sheet10!A3)

--
Thanks,
Shane Devenshire


" wrote:

Hi, I know some about Excel but I need help. Thanks in advance!

I am trying to keep a running total on a "Master Sheet". The other
worksheets would have a cell that i would need to summed up between
all the sheets and outputted on the Master sheet.

for example:
Sheet1 A3 + Sheet2 A3 + Sheet3 A3.........

the macro i have already is:

Function SumTotal()
Const r = "A1"
Dim ST As Range
t = 0
For i = 1 To 3
Set ST = Sheets(i).Range(r)
t = t + ST.Value
Next i
SumTotal = t
End Function

This works fine, The number of sheets i would have would be around
250....
I'm sort of using this as a form that the user would record an
incident on a sheet and would keep a running total of certain things
on the Master Sheet. If anyone knows of any easier way of doing this,
please help. Thanks!

also, would I be able to name the Sheets and still be able to work for
example Sheet1 = master, Sheet2 = Incident1, Sheet3 = Incident2....etc
etc. Thanks!

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default Running total between sheets

Thanks everyone!!!
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
running total and average of that total after 3 events belvy123 Excel Discussion (Misc queries) 0 March 28th 07 02:57 AM
running total and average of that total after 3 events Toppers Excel Discussion (Misc queries) 1 March 28th 07 02:19 AM
running total from the same field on multiple sheets as i add she obviscator Excel Worksheet Functions 2 April 15th 06 06:34 PM
How do I add totals up from different sheets? A running total. Shawn Excel Worksheet Functions 3 December 21st 05 09:37 PM
Running Total doublej0 Excel Worksheet Functions 1 March 11th 05 06:28 PM


All times are GMT +1. The time now is 05:37 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"