Hi, Raef,
can your Excel work with a picture and perform action in it?
Mine canīt. 
Sub FindToday_Values()
Dim rngFound As Range
Set rngFound = Range("B3:AP33").SpecialCells(xlCellTypeConstants, 23).Find(what:=Date, LookIn:=xlValues)
If Not rngFound Is Nothing Then
Application.Goto reference:=Cells(3, rngFound.Column), Scroll:=True
End If
End Sub
Sub FindToday_Formulas()
Dim rngFound As Range
Set rngFound = Range("B3:AP33").SpecialCells(xlCellTypeFormulas, 23).Find(what:=Date, LookIn:=xlValues)
If Not rngFound Is Nothing Then
Application.Goto reference:=Cells(3, rngFound.Column), Scroll:=True
End If
End Sub
Bookmarks