DatePart Function

The DatePart function returns a specified part of a date.

Syntaks

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

Returverdi

A Variant containing a date.

Parameter

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

Add (string value)

Forklaring

yyyy

År

q

Quarter

m

Måned

y

Day of year

w

Ukedag

ww

Week of year

d

Dag

h

Time

n

Minute

s

Second


Date - The date from which the result is calculated.

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

Week_start value

Forklaring

0

Use system default value

1

Sunday (default)

2

Mandag

3

Tirsdag

4

Onsdag

5

Torsdag

6

Fredag

7

Saturday


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

Year_start value

Forklaring

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


Eksempel:

Sub example_datepart

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

End Sub