Hello Kurt,
I dont quite have the solution you want, but I have a second best one.
Select all 50 cells. Press F2 then F4, press enter and it would automatically take you to the second one, and so forth and so forth.
Hi Kurt and Mo!
You will require VBA to achieve this. Here is some code that will do it for you. Just select your range first, then Run the macro.
Sub MakeAbsolute()
'Written by OzGrid Business Applications
'www.ozgrid.com
Dim RdoRange As Range
Dim i As Integer
Dim Reply As String
On Error Resume Next
'Ask whether Relative or Absolute
Reply = InputBox("Change formulas: Relative or Absolute", _
"OzGrid Business Applications", "Absolute")
'They canceled
If Reply = "" Then Exit Sub
'Set Range variable to formula cells only
Set RdoRange = Selection.SpecialCells(xlFormulas)
'determin the change type
Select Case Reply
Case "Absolute"
'Loop through each area and change to Absolute
For i = 1 To RdoRange.Areas.Count
RdoRange.Areas(i).Formula = Application.ConvertFormula _
(RdoRange.Areas(i).Formula, xlA1, xlA1, xlAbsolute)
Next i
Case "Relative"
'Loop through each area and change to Relative
For i = 1 To RdoRange.Areas.Count
RdoRange.Areas(i).Formula = Application.ConvertFormula _
(RdoRange.Areas(i).Formula, xlA1, xlA1, xlRelative)
Next i
Case Else 'Typo
MsgBox "Change type not recognised!", vbCritical, _
"OzGrid Business Applications"
End Select
'Clear memory
Set RdoRange = Nothing
End Sub
Dave
OzGrid Business Applications
Thanks guys. I appreicate the help