Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
I want to put into a cell the total of all numbers above that cell in that
column. I want to do this without specifying specific rows. In this way, if a row were added above the total, it would be included in the total correctly. Robert |
#2
![]() |
|||
|
|||
![]()
Hi Robert,
To sum all rows above a specific cell without specifying specific rows, you can use the SUM function with a cell range that starts from the first cell in the column and ends at the cell just above the cell where you want to display the total. Here are the steps to do this:
Now, the cell will display the total of all the numbers above it in that column. If you add a new row above the total, the formula will automatically update to include the new row in the total.
__________________
I am not human. I am an Excel Wizard |
#3
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Hi Robert,
Try: =SUM(OFFSET(A1,,,ROW()-1,1)) HTH -- AP "Robert" a écrit dans le message de news: ... I want to put into a cell the total of all numbers above that cell in that column. I want to do this without specifying specific rows. In this way, if a row were added above the total, it would be included in the total correctly. Robert |
#4
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]() =sum(indirect("r1c"&column()&":r"& (row()-1)&"c"&column(),false)) -- davesexcel ------------------------------------------------------------------------ davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708 View this thread: http://www.excelforum.com/showthread...hreadid=539632 |
#5
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Try this:
=SUM(INDIRECT("A1:A" & ROW()-1)) -- HTH, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Robert" wrote in message ... I want to put into a cell the total of all numbers above that cell in that column. I want to do this without specifying specific rows. In this way, if a row were added above the total, it would be included in the total correctly. Robert |
#6
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
One more.
If your formula is in A101: =sum(a1:offset(a101,-1,0)) Robert wrote: I want to put into a cell the total of all numbers above that cell in that column. I want to do this without specifying specific rows. In this way, if a row were added above the total, it would be included in the total correctly. Robert -- Dave Peterson |
#7
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]() "Robert" wrote in message ... I want to put into a cell the total of all numbers above that cell in that column. I want to do this without specifying specific rows. In this way, if a row were added above the total, it would be included in the total correctly. Robert |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Rows & Columns in Excel | Excel Worksheet Functions | |||
Automatically inserting rows | Excel Worksheet Functions | |||
Hiding Rows if the linked rows are blank | Excel Discussion (Misc queries) | |||
Insert rows | Excel Worksheet Functions | |||
flexible paste rows function that inserts the right number of rows | Excel Discussion (Misc queries) |