Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How can one create a range reference that contains the same number of
rows even if someone deletes rows (example a10:a50 remains the same range reference after someone deletes rows within this range)? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUM(INDIRECT("A10:A50"))
-- David Biddulph wrote in message ... How can one create a range reference that contains the same number of rows even if someone deletes rows (example a10:a50 remains the same range reference after someone deletes rows within this range)? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way is to use Indirect to produce a fixed text for range.
In B1=enter A10 as your staring point of your range In B2=enter A50 as your ending point of your range then in B3=SUM(INDIRECT(B1):INDIRECT(B2)), This will produce sum(A10:A50) and by deleting a row between A10 and A50, the sum command will not change. Hope this helps. " wrote: How can one create a range reference that contains the same number of rows even if someone deletes rows (example a10:a50 remains the same range reference after someone deletes rows within this range)? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
in formula a range cell reference eg) $A1:$A20 that is static whenfilling | New Users to Excel | |||
How to specify a static cell reference | Excel Discussion (Misc queries) | |||
static reference in formula to worksheet | Excel Worksheet Functions | |||
Making column reference in INDIRECT non-static | Excel Worksheet Functions | |||
Static cell reference | Excel Worksheet Functions |