MS Access DateAdd() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

MS Access DateAdd() Function

❮ MS Access Functions

Example

Add two years to a specified date:

SELECT DateAdd("yyyy", 2, #22/11/2017#);
Try it Yourself »

Definition and Usage

The DateAdd() function returns a date after a certain time/date interval has been added.

Syntax

DateAdd(interval, number, date)

Parameter Values

Parameter Description
interval Required. The time/date interval to add. Can be one of the following values:
  • yyyy = Year
  • q = Quarter
  • m = month
  • y = Day of the year
  • d = Day
  • w = Weekday
  • ww = Week
  • h = hour
  • n = Minute
  • s = Second
number Required. The number of intervals to add
date Required. The date to be modified

Technical Details

Works in: Access 2016, Access 2013, Access 2010, Access 2007, Access 2003, Access XP, Access 2000

More Examples

Example

Add one year to the current system date:

SELECT DateAdd("yyyy", 1, Date());
Try it Yourself »

Example

Add 6 months to the employees' birth date:

SELECT LastName, DateAdd("m", 6, BirthDate) FROM Employees;
Try it Yourself »

❮ MS Access Functions