Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is there a way to change relative cell refernces in multiple formulas from
relative to absolute all at the same time, rather than highlighting refernce and hitting F4 and changing them one at a time. I have to change several hundred formula references from relative to absolute. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sub AbsFormula()
Dim rcell As Range For Each rcell In ActiveSheet.UsedRange.SpecialCells(xlFormulas) rcell.Formula = Application.ConvertFormula( _ rcell.Formula, xlA1, xlA1, xlAbsolute) Next rcell End Sub HTH -- AP "JAaron" a écrit dans le message de news: ... Is there a way to change relative cell refernces in multiple formulas from relative to absolute all at the same time, rather than highlighting refernce and hitting F4 and changing them one at a time. I have to change several hundred formula references from relative to absolute. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Maintaining cell reference after sorting | Excel Discussion (Misc queries) | |||
Changing cell references in a Range to Absolute | Excel Discussion (Misc queries) | |||
Transposing + Absolute Reference + Multiple Worksheets = my headache | Excel Worksheet Functions | |||
Copying a work sheet cell reference as relative not absolute? | Excel Discussion (Misc queries) | |||
Possible Lookup Table | Excel Worksheet Functions |