DateDiff Function

Returns the number of date or time intervals between two given date values.

Syntax:


DateDiff (interval As String, date1 As Date, date2 As Date [, firstDayOfWeek As Integer [, firstWeekOfYear As Integer]]) As Double

დაბრუნებული მნიშვნელობა:

რიცხვი.

Parameters:

interval - A string expression from the following table, specifying the date or time interval.

interval (string value)

ახსნა

yyyy

Year

q

Quarter

m

Month

y

Day of year

w

Weekday

ww

Week of year

d

Day

h

Hour

n

Minute

s

Second


date1, date2 - The two date values to be compared.

Date literals allow to specify unambiguous date variables that are independent from the current language. Literals are enclosed between hash signs #. Possible formats are:

firstdayofweek: An optional parameter that specifies the starting day of a week.

firstdayofweek value

ახსნა

0

Use system default value

1

კვირა (საწყისი)

2

ორშაბათი

3

სამშაბათი

4

ოთხშაბათი

5

ხუთშაბათი

6

პარასკევი

7

შაბათი


firstweekofyear: An optional parameter that specifies the starting week of a year.

firstweekofyear value

ახსნა

0

Use system default value

1

კვირა 1 არის კვირა იანვრით, პირველი (საწყისად)

2

კვირა 1 არის პირველი კვირა, რომელიც შეიცავს ამ კვირის ოთხ ან მეტ დღეს

3

კვირა 1 არის პირველი კვირა, რომელიც შეიცავს მხოლოდ ახალი წილის დღეებს


Example:


Sub example_datediff
    MsgBox DateDiff("d", #1/1/2005#, #2005-12-31#)
End Sub