Adding time in a report

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
 
M

Marshall Barton

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())
 
Top