Well using Macro recorder i was able to Make it happen. Heres what it looks like. (ps i have know idea how or why it works)
Sub Today_Find()
'
' Today_Find Macro
'
' Keyboard Shortcut: Ctrl+t
' Were "Range("Date")" =today()
Range("Date").Select
Selection.Copy
Cells.Find(what:=Date, After:=ActiveCell, LookIn:=xlValues, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
End Sub
Edit/Delete Message