Date and time

  • Thread starter Thread starter Douglas J. Steele
  • Start date Start date
I have set up an update query to enter the date and time
when I run it.

My expression is - NOW(). What type of expression it be
if I wanted it to be - Now less 10 minutes.
 
CINDY K said:
I have set up an update query to enter the date and time
when I run it.

My expression is - NOW(). What type of expression it be
if I wanted it to be - Now less 10 minutes.



DateAdd("n", -10, Now())
 
Back
Top