View Single Post
  #4   Report Post  
Mike
 
Posts: n/a
Default

Chip, thanks for the macro, i'll give it a shot.

"Chip Pearson" wrote:

You can do it with the following macro:

Sub ChangeFormulas()
Dim Rng As Range
For Each Rng In Range("A1:A10").SpecialCells(xlCellTypeFormulas)
If Rng.HasArray Then
Rng.FormulaArray = Application.ConvertFormula( _
fromreferencestyle:=xlA1, Formula:=Rng.Formula,
toabsolute:=True)
Else
Rng.Formula = Application.ConvertFormula( _
fromreferencestyle:=xlA1, Formula:=Rng.Formula,
toabsolute:=True)
End If
Next Rng
End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com






"Mike" wrote in message
...
Is it possible to change a large range of very complex formulas
from relative
reference to absolute reference. Something other than the
replace command?

thanks, Mike