DatePart Function

The DatePart function returns a specified part of a date.

Sintaksa:

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

Vlerë absolute

Formati numerik: datë

Parametrat animues

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

Vlerë në zvoglim e kryerreshtit

Explanation

yyyy

Viti

q

Quarter

m

Muaj

y

Dita e parw e periudhws

w

WEEKDAY

ww

Week of year

d

Dita

h

ORA

n

MINUTA

s

SEKONDA


Date - The date from which the result is calculated.

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

Vlerë në zvoglim e kryerreshtit

Explanation

0

Cila listë fjalësh do jetë e prezgjedhura e sistemit?

1

Fontet standarde

2

Monday

3

Tuesday

4

Wednesday

5

Thursday

6

Friday

7

Saturday


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

Vlerë në zvoglim e kryerreshtit

Explanation

0

Cila listë fjalësh do jetë e prezgjedhura e sistemit?

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


Shembull

Sub example_datepart

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

End Sub