On a form I want to evaluate if a time entered is later than a schedule time, with a time allowance of 10 minutes added to the schedule time.
here is my code:
if Now() > ScheduleTime + 10 then
msgbox Late
end if
I want to know why is the 10 not recognized and the results are unexpected?
here is my code:
if Now() > ScheduleTime + 10 then
msgbox Late
end if
I want to know why is the 10 not recognized and the results are unexpected?