I am trying to have cell B4 on sheet4 update to today's date if J3 changed for worksheet named "Review_Tracking". It seems simple and I can't figure out why it doesn't work. I am a complete newbie to VBA coding, just starting looking at it today. Thanks!
Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Excel.Range)
If Sh.Name = "Review_Tracking" And Target.Address = "$J$3" Then Sheet4.Range("$B$4") = ToDate
End Sub