I have this code
My aim is to have cell s27 enter the date each time anything in those other cells change. Possible? Is that code correct?![]()
Private Sub Worksheet_Change(ByVal Target As Range) If Not Intersect(Target, Range("a50:aq50")) Is Nothing Then Application.EnableEvents = False Range("S27") = Date Application.EnableEvents = True End If End Sub
Bookmarks