Hi all,
I am using this code to convert formulas from relative to absolute :
Sub lockref()
Application.Calculation = xlCalculationManual
Dim c As Range
For Each c In Selection
c.Formula = Application.ConvertFormula(c.Formula, xlA1, , xlAbsolute)
Next
End Sub
I would like to convert...