For your sheet code:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim todays_date As Range
If Not Intersect(Target, Columns("B:C")) Is Nothing Then
Set todays_date = Range("A2:A100").Find(what:=Range("A1"), lookat:=xlWhole)
If Not todays_date Is Nothing Then
If Not Intersect(Target, todays_date.Offset(0, 1).Resize(6, 3)) Is Nothing Then
MsgBox "Spotted change in: " & todays_date.Offset(0, 1).Resize(6, 3).Address
End If
End If
End If
End Sub
note in attachment there is now out-or range date in A1
Bookmarks