Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi
I have a lot of If formulas in a sheet. Now I need to have all the cellreferences in the sheet(D16:J51) made absolute... I have tried copy/drag but apparantly the formulas are too complicated for Excel to copy/drag them. Any ideas? I'm guessing this cannot be done without a macro, but if that what it takes... |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Okay
Found an answer to this in another older thread Sub SetAllToAbsolute() Dim c As Range For Each c In Selection '<--Cell became C If c.HasFormula Then c.Formula = Application.ConvertFormula(c.Formula, _ xlA1, xlA1, xlAbsolute) End If Next c '<-- I like it here, too <bg End Sub By Don Guillett |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
convert relative cell references to absolute cell references via amacro? | Excel Discussion (Misc queries) | |||
Help with converting a block of cells with Absolute and mixed references to relative references | Excel Worksheet Functions | |||
Excel - copy absolute cell references (within the range) as relati | Excel Discussion (Misc queries) | |||
Changing cell references in a Range to Absolute | Excel Discussion (Misc queries) | |||
Making Sum ranges Absolute | Excel Discussion (Misc queries) |