Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Is there a faster way to change a bunch of formulas to have absolute values,
instead of going into each one and doing the F4? ~Steph |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Steph,
Select the cells with formulas, and run the macro below. HTH, Bernie MS Excel MVP Sub ConvertToAbsoluteReferences() Dim myCell As Range Dim storedCalc As Variant With Application storedCalc = .Calculation .ScreenUpdating = False .EnableEvents = False .Calculation = xlCalculationManual For Each myCell In Intersect(Selection, Selection.SpecialCells(xlCellTypeFormulas)) myCell.Formula = Application.ConvertFormula( _ myCell.Formula, xlA1, xlA1, xlAbsolute) Next myCell .ScreenUpdating = True .EnableEvents = True .Calculation = storedCalc End With End Sub "steph44haf" wrote in message ... Is there a faster way to change a bunch of formulas to have absolute values, instead of going into each one and doing the F4? ~Steph |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I copy only cells with formulas in another row? | Excel Worksheet Functions | |||
How to change column letters to correct ones in many formulas automatically? | Links and Linking in Excel | |||
How to change column letters to correct ones in many formulas automatically? | Excel Worksheet Functions | |||
how can i get formulas in excel to copy and paste? | Excel Worksheet Functions | |||
calculating formulas for all workbooks in a folder | Excel Worksheet Functions |