'Put in ThisWorkbook code pane. It won't work at all if installed anywhere else.
Private Sub Workbook_Open()
GoToToday
End Sub
'Put in regular module sheet.
Sub GoToToday()
Dim cel As Range
Set cel = ActiveSheet.UsedRange.Find(Format(Date, "d-mmm"), LookIn:=xlValues, LookAt:=xlWhole)
If Not cel Is Nothing Then Application.Goto cel
End Sub
|