This macro - when installed correctly will run everytime a change is made to a cell within the sheet -suggest you test in a new workbook
If the change is made to cells a1, a2 or e3 it will insert the now() value into the next cell to the right (b1, b2, b3)
'These instructions pre typed & are worded to cater for the novice programmer
'To install macro to correct location
'Copy this macro
'GoTo Excel
'Select sheet this is to appy to
'Right Click on Sheet Name Tab > select View Code
'Past macro into the Worksheet Module displayed
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Range("a1:a3")) Is Nothing Then
Application.EnableEvents = False
Target.Offset(0, 1).Value = Now()
End If
Application.EnableEvents = True
End Sub
Now make changes to cells on the sheet
Bookmarks