Hi I have macro set up that used to work fine but has recently stopped working. It’s supposed to jump to todays date when I activate a sheet.
Private Sub Worksheet_Activate()
Dim DateRng As Range, DataCell As Range
Set DateRng = Range (“A:A”)
For Each DateCell In DateRng
If DateCell.Value = Date Then DateCell.Select
Private Sub Worksheet_Activate()
Dim DateRng As Range, DataCell As Range
Set DateRng = Range (“A:A”)
For Each DateCell In DateRng
If DateCell.Value = Date Then DateCell.Select