Adding time in a report

  • Thread starter Thread starter Susan
  • Start date Start date
S

Susan

I want to create a text box in an Access report, that will take the current
time and add 5 hours.
How do I do this ?

Thank you
 
Susan said:
I want to create a text box in an Access report, that will take the current
time and add 5 hours.

Use an expression in the text box:

=DateAdd("h", 5, Now())
 
Back
Top