Not sure what you need to do with this, but the following might help
Open up the vb window and click on 'thisworkbook' in the project window
Paste the following code
Code:
Dim ws As Worksheet, rng As Range
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
Set ws = Sh
Set rng = Target
End Sub
Sub gotoLastModified()
on error resume next
ws.Activate
rng.Select
End Sub
Now if you use alt-F8 and run the 'thisworkbook.gotolastmodified' module the last modded cell in the sheet will be selected.
HTH