HOWTO: How to Add or Subtract Time with a DateTime Data TypeLast reviewed: November 11, 1997Article ID: Q176043 |
The information in this article applies to:
SUMMARYThis article describes how to add or subtract time with a DateTime field. Time, in seconds, can be added or subtracted with a DateTime data type field. Time carries over from seconds to minutes to hours to days and to years. There are no adjustments in this sample for a leap year. This is an example and you may want to add additional functionality if time calculations are a large part of your application.
MORE INFORMATIONWhen you add or subtract time with a DateTime field, the value(s) to add or subtract will be calculated with seconds. Example to add an hour:
HourFromNow = Datetime() + 3600-or- Example to subtract a week:
WeekAgo = Datetime() – (7*24*3600) |
Additional query words: datetime day hour minute second hh:mm:ss
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |