I want to have a user enter a date, and then have the system tell the user the next day's date.
Dim rptdate As Date
rptdate = Application.InputBox("Enter date.", Title:="Date Entry", Type:=1)
MsgBox (DateAdd(d, 1, rptdate))
the msgbox line does not want to work but not sure how to...