| |
itan
Posts: 10
Score: 0
Joined: 5/31/2001
From: USA
Status: offline
|
DateDiff Function ----------------------------------------------------- Description Returns the number of intervals between two dates. Syntax DateDiff(interval, date1, date2 [,firstdayofweek[, firstweekofyear]]) The DateDiff function syntax has these parts: Part Description interval Required. String expression that is the interval you want to use to calculate the differences between date1 and date2. See Settings section for values. date1, date2 Required. Date expressions. Two dates you want to use in the calculation. firstdayofweek Optional. Constant that specifies the day of the week. If not specified, Sunday is assumed. See Settings section for values. firstweekofyear Optional. Constant that specifies the first week of the year. If not specified, the first week is assumed to be the week in which January 1 occurs. See Settings section for values. Settings The interval argument can have the following values: Setting Description yyyy Year q Quarter m Month y Day of year d Day w Weekday ww Week of year h Hour n Minute s Second
|
|