Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I created a formula that contains absolute references (ex. =sum($C$5, $C$7,
$C$9)). I need to insert a NEW, blank column C. Even with absolute references in the formula, the formula changes the references to $D$5, $D$7, etc. Is there a way to keep the formula pointing to column C regardless of inserting new columns? Thanks in advance! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=SUM(INDIRECT("$C$5"),INDIRECT("$C$7"),INDIRECT("$ C$9"))
-- Gary''s Student - gsnu200833 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use the INDIRECT function.
-- David Biddulph "BobK" wrote in message ... I created a formula that contains absolute references (ex. =sum($C$5, $C$7, $C$9)). I need to insert a NEW, blank column C. Even with absolute references in the formula, the formula changes the references to $D$5, $D$7, etc. Is there a way to keep the formula pointing to column C regardless of inserting new columns? Thanks in advance! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way is to use Indirect, as in:
=indirect("C5")+indirect("C7")+indirect("C9") In your example, using Sum is superfluous. Just add the numbers. Regards, Fred. "BobK" wrote in message ... I created a formula that contains absolute references (ex. =sum($C$5, $C$7, $C$9)). I need to insert a NEW, blank column C. Even with absolute references in the formula, the formula changes the references to $D$5, $D$7, etc. Is there a way to keep the formula pointing to column C regardless of inserting new columns? Thanks in advance! |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Why SUM when =$C$5 + $C$7+ $C$9 does the same thing?
Now to answer your question =INDIRECT("C5")+INDIRECT("C7")+INDIRECT("C9") best wishes -- Bernard V Liengme Microsoft Excel MVP http://people.stfx.ca/bliengme remove caps from email "BobK" wrote in message ... I created a formula that contains absolute references (ex. =sum($C$5, $C$7, $C$9)). I need to insert a NEW, blank column C. Even with absolute references in the formula, the formula changes the references to $D$5, $D$7, etc. Is there a way to keep the formula pointing to column C regardless of inserting new columns? Thanks in advance! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
convert relative cell references to absolute cell references via amacro? | Excel Discussion (Misc queries) | |||
Absolute references in Calculated Table columns | Excel Discussion (Misc queries) | |||
Help with converting a block of cells with Absolute and mixed references to relative references | Excel Worksheet Functions | |||
Absolute References | Excel Discussion (Misc queries) | |||
Absolute References | Excel Worksheet Functions |