Example 1
DateAddMinutes(Now(),45)
Will add 45 minutes to the result of the Now function.
Adds a specified number of minutes to a date value.
DateAddMinutes(Start Date, Minutes)
Where:
Start Date The date to adjust.
Minutes The number of minutes to add. Negative values can be used to subtract.
DateAddMinutes(Now(),45)
Will add 45 minutes to the result of the Now function.
DateAddMinutes(Now(),-45)
Will subtract 45 minutes from the result of the Now function.