Sub 日期跳轉()
'轉換日期
Dim today As Date
Sheets("主頁").Select
x = Range("J1").Value
DateValue (x)
MsgBox "" & x
Sheets("當日收支").Select
Cells.Find(What:="" & x, After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
End Sub