I want to have a user enter a date, and then have the system tell the user the next day's date.
the msgbox line does not want to work but not sure how to fix it..probably an easy fix.
HTML:
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 fix it..probably an easy fix.