A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Gord Dibben published this some time back and I've made minor mods to it just to add information, the heart of the code is his:
Sub MakeAbsoluteAddresses()
'Thanks to Gord Dibben for the code!
'http://www.excelforum.com/excel-general/372383-making-multiple-cells-absolute-at-once.html
'to insert this code into a regular code module, follow the instructions here:
'http://www.contextures.com/xlvba01.html#videoreg
'To Use:
' Select the cells to be converted to absolute addressing
' then run this macro.
Dim Cell As Range
For Each Cell In Selection
If Cell.HasFormula Then
Cell.Formula = _
Application.ConvertFormula(Cell.Formula, xlA1, xlA1, xlAbsolute)
End If
Next
MsgBox "Conversion to Absolute completed.", vbOKOnly, "Job Done"
End Sub