Try
Sub Test()
Dim Cell As Range
For Each Cell In Selection
If Cell.Formula Like "=*" Then
Cell.Formula = Left(Cell.Formula, InStr(Cell.Formula, "!")) & Range(Right(Cell.Formula, Len(Cell.Formula) - InStr(Cell.Formula, "!"))).Offset(1, 0).Address
End If
Next Cell
End Sub
This will increment the formulae on selected cells.
Open up the VBA editor by hitting ALT F11
Insert a new module by hitting Insert - Module
Paste the macro into the empty sheet
Hit ALT F11 to get back to the worksheet.
Run the macro by going to tools-macro in Excel 2003 or the view ribbon in Excel 2007/2010.
Bookmarks