A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
Try this:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
On Error GoTo ExitPoint
Application.EnableEvents = False
Worksheets("Safety Calculation").Range("F2") = Date
ExitPoint:
Application.EnableEvents = True
End Sub
You need to disable the Events, otherwise the act of placing the date in F2 re-triggers the event infinitely. Use the error handling so that events are always left enabled.
Cheers
Rich