DatePart Function

The DatePart function returns a specified part of a date.

Sintaksis:

DatePart (Add, Date [, Week_start [, Year_start]])

Nilai hasil:

Varian yang berisi tanggal.

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


Tanggal - Tanggal dari mana hasil dihitung.

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

Week_start value

Penjelasan

0

Gunakan nilai standar sistem

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

Gunakan nilai standar sistem

1

Minggu 1 adalah minggu dengan Bulan Januari, 1 (default)

2

Minggu 1 adalah minggu pertama yang mengandung empat hari atau lebih tahun itu

3

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


Contoh:

Sub example_datepart

    MsgBox DatePart("ww", "12/31/2005")

End Sub