Met dit stukje code zou het moeten lukken.
Sub go()
Dim FindString As Date, rng As Range
Sheets("Data_Day").Range("C27:N27").Copy
FindString = Date
With Sheets("Data_Overall_Day").Range("A:A")
Set rng = .Find(What:=FindString, After:=.Cells(.Cells.Count), LookIn:=xlFormulas, LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False)
If Not rng Is Nothing Then Application.Goto rng, True
ActiveCell.Offset(, 1).PasteSpecial xlPasteValues
End With
Application.CutCopyMode = False
End Sub