Hour adding function

  • Thread starter Thread starter Lee
  • Start date Start date
L

Lee

I have a start time field in a form. My boss want me have
a button on the form he can click and view a list of 6,
12, 24, 36, 48, 72 hour after the start time (include
time, date). Does someone has solution to this?
 
To add a number of hours to a time, use DateAdd("h", NumberOfHours, MyTime)
(obviously you need to replace NumberOfHours and MyTime with your values)
 
Back
Top