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

Vlerë absolute

A number.

Parameters:

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

interval (string value)

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


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

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


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

firstweekofyear value

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


Example:


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

Please support us!