Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is there a simple way to change a range of absolute references to
relative? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Mat,
Right click your sheet tab, view code and paste this in. Select the range of data and run the code Sub Missive() For Each c In Selection If c.HasFormula Then c.Formula = Application.ConvertFormula(c.Formula, _ FromReferenceStyle:=xlA1, ToReferenceStyle:=xlA1, ToAbsolute:=xlRelative) End If Next End Sub Mike "Matt" wrote: Is there a simple way to change a range of absolute references to relative? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Hi Try also Ctrl+H Find what $ Repace with (leave blank) Click options Lookin should be "formulas" Replace all OK -- Pecoflyer Cheers ------------------------------------------------------------------------ Pecoflyer's Profile: http://www.thecodecage.com/forumz/member.php?userid=14 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=32528 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Mike, I tried the missive code by selecting the range and running but
the formulas are still showing relative references. the formulas look like this: ='Nov W3'!E38 Does it matter that the reference is to another sheet? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Code: -------------------- ='Nov W3'!E38 -------------------- Is a relative reference. Is this not what you want? -- Pecoflyer Cheers ------------------------------------------------------------------------ Pecoflyer's Profile: http://www.thecodecage.com/forumz/member.php?userid=14 View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=32528 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Shoot. I got it backwards. I mean relative to absolute ( ='Nov W3'!
E38 to ='Nov W3'!$E$38) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Trying to change the background of a cell if I type a certain wor | Excel Worksheet Functions | |||
How do you change the data type of a cell using VBA? | New Users to Excel | |||
Change graph type | Excel Discussion (Misc queries) | |||
how to change all the words of one type(Gunsuh type)to another | Excel Discussion (Misc queries) | |||
... I want to change a chart type ... | Charts and Charting in Excel |