I am running the following to automatically date stamp a range of data when anything in its respective row is modified:
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("A2:AA7000")) Is Nothing Then Exit Sub
Application.EnableEvents =...