Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a workbook with 7 sheets. Each sheet has several colums with each
having a dollar total and quanity ordered. How do I make all the totals from each sheet total up on the last sheet for a grand total? I need to know how many dollars were spent and how many of each product was ordered. Doug -- ---------------------------------------------------- This mailbox protected from unsolicited email by Spam Alarm from Dignity Software http://www.dignitysoftware.com |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUM(Sheet1:Sheet7!A20)
"Doug" wrote: I have a workbook with 7 sheets. Each sheet has several colums with each having a dollar total and quanity ordered. How do I make all the totals from each sheet total up on the last sheet for a grand total? I need to know how many dollars were spent and how many of each product was ordered. Doug -- ---------------------------------------------------- This mailbox protected from unsolicited email by Spam Alarm from Dignity Software http://www.dignitysoftware.com |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Each sheet is named, Main, Flag, Midgets, Rookies, Juniors, Seniors and
Cheer. I want their totals on the Main sheet. I am tracking my youth football teams fundraising. Should I rename them back to sheet 1,2, etc.......... -- ---------------------------------------------------- This mailbox protected from unsolicited email by Spam Alarm from Dignity Software http://www.dignitysoftware.com "Teethless mama" wrote in message ... =SUM(Sheet1:Sheet7!A20) "Doug" wrote: I have a workbook with 7 sheets. Each sheet has several colums with each having a dollar total and quanity ordered. How do I make all the totals from each sheet total up on the last sheet for a grand total? I need to know how many dollars were spent and how many of each product was ordered. Doug -- ---------------------------------------------------- This mailbox protected from unsolicited email by Spam Alarm from Dignity Software http://www.dignitysoftware.com |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
The syntax is essentially first_sheet:last_sheet, so you could make it
Main:Cheer if these are the outer sheets of the range of sheets to want to add from - ensure that the main sheet is to the left or right (i.e. outside of the range of sheets in your file). Hope this helps. Pete On Jul 31, 11:50 pm, "Doug" wrote: Each sheet is named, Main, Flag, Midgets, Rookies, Juniors, Seniors and Cheer. I want their totals on the Main sheet. I am tracking my youth football teams fundraising. Should I rename them back to sheet 1,2, etc.......... -- ---------------------------------------------------- This mailbox protected from unsolicited email by Spam Alarm from Dignity Software http://www.dignitysoftware.com"Teethless mama" wrote in message ... =SUM(Sheet1:Sheet7!A20) "Doug" wrote: I have a workbook with 7 sheets. Each sheet has several colums with each having a dollar total and quanity ordered. How do I make all the totals from each sheet total up on the last sheet for a grand total? I need to know how many dollars were spent and how many of each product was ordered. Doug -- ---------------------------------------------------- This mailbox protected from unsolicited email by Spam Alarm from Dignity Software http://www.dignitysoftware.com- Hide quoted text - - Show quoted text - |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I renamed the sheets to sheet 1 and so on. Works great.
Thanks -- ---------------------------------------------------- This mailbox protected from unsolicited email by Spam Alarm from Dignity Software http://www.dignitysoftware.com "Pete_UK" wrote in message ups.com... The syntax is essentially first_sheet:last_sheet, so you could make it Main:Cheer if these are the outer sheets of the range of sheets to want to add from - ensure that the main sheet is to the left or right (i.e. outside of the range of sheets in your file). Hope this helps. Pete On Jul 31, 11:50 pm, "Doug" wrote: Each sheet is named, Main, Flag, Midgets, Rookies, Juniors, Seniors and Cheer. I want their totals on the Main sheet. I am tracking my youth football teams fundraising. Should I rename them back to sheet 1,2, etc.......... -- ---------------------------------------------------- This mailbox protected from unsolicited email by Spam Alarm from Dignity Software http://www.dignitysoftware.com"Teethless mama" wrote in message ... =SUM(Sheet1:Sheet7!A20) "Doug" wrote: I have a workbook with 7 sheets. Each sheet has several colums with each having a dollar total and quanity ordered. How do I make all the totals from each sheet total up on the last sheet for a grand total? I need to know how many dollars were spent and how many of each product was ordered. Doug -- ---------------------------------------------------- This mailbox protected from unsolicited email by Spam Alarm from Dignity Software http://www.dignitysoftware.com- Hide quoted text - - Show quoted text - |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Doug
Insert a dummy sheet before all sheets....name it First Insert a dummy sheet after all sheets....name it Last Formula is then =First:Last!A20 Any new sheets can be inserted between First and Last like the jam in a sandwich. Sheet names are then inconsequential. Gord Dibben MS Excel MVP On Tue, 31 Jul 2007 17:50:15 -0500, "Doug" wrote: Each sheet is named, Main, Flag, Midgets, Rookies, Juniors, Seniors and Cheer. I want their totals on the Main sheet. I am tracking my youth football teams fundraising. Should I rename them back to sheet 1,2, etc.......... |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
That worked........ One more question. Need to multiply a number in a colum
times a dollar amount. Like quantity of 126 x $5.00 = ? -- ---------------------------------------------------- This mailbox protected from unsolicited email by Spam Alarm from Dignity Software http://www.dignitysoftware.com "Gord Dibben" <gorddibbATshawDOTca wrote in message ... Doug Insert a dummy sheet before all sheets....name it First Insert a dummy sheet after all sheets....name it Last Formula is then =First:Last!A20 Any new sheets can be inserted between First and Last like the jam in a sandwich. Sheet names are then inconsequential. Gord Dibben MS Excel MVP On Tue, 31 Jul 2007 17:50:15 -0500, "Doug" wrote: Each sheet is named, Main, Flag, Midgets, Rookies, Juniors, Seniors and Cheer. I want their totals on the Main sheet. I am tracking my youth football teams fundraising. Should I rename them back to sheet 1,2, etc.......... |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming dollars are in column A
In B1 enter =A1*126 Or if dollars in column A and quantities in column B enter in C1 =A1*B1 Or if the multiplier for all dollars is in a cell use =A1*$D$1 where D1 is 126 Copy any of those down by dragging on the fill handle(small black square at lower right corner of the cell. Note the $ signs in some references and not in others. No $ signs means that cell reference will increment as copied. The $ sign will fix the cell reference so's it doesn't change. Gord On Tue, 31 Jul 2007 18:56:52 -0500, "Doug" wrote: That worked........ One more question. Need to multiply a number in a colum times a dollar amount. Like quantity of 126 x $5.00 = ? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding totals after filtering | Excel Discussion (Misc queries) | |||
Adding up multiple worksheets by name and totals | Excel Worksheet Functions | |||
Adding category totals | Excel Worksheet Functions | |||
Formula for adding up totals of groups | Excel Discussion (Misc queries) | |||
Formula for adding several worksheet totals | Excel Discussion (Misc queries) |