![]() |
Adding totals to new sheet
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 |
Adding totals to new sheet
=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 |
Adding totals to new sheet
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 |
Adding totals to new sheet
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 - |
Adding totals to new sheet
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 - |
Adding totals to new sheet
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.......... |
Adding totals to new sheet
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.......... |
Adding totals to new sheet
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 = ? |
Adding totals to new sheet
That worked great. I know I said that was my last question. But now you got
me on a role. Now I want to subtract. -- ---------------------------------------------------- This mailbox protected from unsolicited email by Spam Alarm from Dignity Software http://www.dignitysoftware.com "Gord Dibben" <gorddibbATshawDOTca wrote in message ... 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 = ? |
Adding totals to new sheet
=A1-B1
Not to dissuade you from asking questions here but there are some pretty good basic Excel tutorial sites on the 'net which may help you speed up the learning curve. http://www.usd.edu/trio/tut/excel/index.html http://www.baycongroup.com/el0.htm http://office.microsoft.com/en-us/tr...831141033.aspx Gord On Tue, 31 Jul 2007 20:43:57 -0500, "Doug" wrote: That worked great. I know I said that was my last question. But now you got me on a role. Now I want to subtract. |
All times are GMT +1. The time now is 09:04 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com