I think if you highlight the cells and press F4 it should do it for you.
Hi Matt, to do this:
Click on the cell that contains the formula you wish to change.
Highlight the cell references you wish to change. (e.g. a23+b34 from your example)
Press F4, converts all to absolute references.
Keep pressing F4 and it toggles options, eg, both column and row, just row or just column.
HTH,
Dave.
I don't believe the f4 way works without activiating each cell. If your formalas all use similar columns, you may be able to get away with a couple of find (A and B) and replaces ($A$ and $b$). If your rows are the simlar items, you could find 23 and replace with $23. Then find = and replace with =$. same with +. This definately isn't a catch all, but could save you same time if all formulas have some sort of commonality.
good luck.
Thanks for the suggestions on that one. The find and replace sort of worked, but i still have to check each cell formula to make sure its correct. Hence, i think i'll have to go through one by one pressing "F2 F4 Enter". Yipee.
Sub ConvertFormulasToAbsolute()
Dim rng As Range, cell As Range
On Error GoTo e
Set rng = Selection.SpecialCells(xlFormulas)
For Each cell In rng
cell.Formula = Application.ConvertFormula(cell.Formula, xlA1, xlA1, xlAbsolute)
Next
Exit Sub
e:
MsgBox "No formula cells in the selection."
End Sub