DateDiff Function

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

Sintaksis:

DateDiff (Add, Date1, Date2 [, Week_start [, Year_start]])

Nilai hasil:

A number.

Parameter:

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

Add (string value)

Penjelasan

yyyy

Tahun

q

Kuarter

m

Bulan

y

Day of year

w

Weekday

ww

Week of year

d

Hari

h

Jam

n

Menit

s

Detik


Date1, Date2 - The two date values to be compared.

Week_start - An optional parameter that specifies the starting day of a week.

Week_start value

Penjelasan

0

Use system default value

1

Minggu (utama)

2

Senin

3

Selasa

4

Rabu

5

Kamis

6

Jumat

7

Sabtu


Year_start - An optional parameter that specifies the starting week of a year.

Year_start value

Penjelasan

0

Use system default value

1

Week 1 is the week with January, 1st (default)

2

Week 1 is the first week containing four or more days of that year

3

Week 1 is the first week containing only days of the new year


Contoh:

Sub example_datediff

    MsgBox DateDiff("d", "1/1/2005", "12/31/2005")

End Sub