DateAdd Function

Adds a date interval to a given date a number of times and returns the resulting date.

āļšāˇāļģāļš āļģāˇ“āļ­āˇ’āļē:


DateAdd (Add, Count, Date)

āļ†āļ´āˇƒāˇ” āļŊāļļāˇāļ¯āˇ™āļą āļ…āļœāļē:

āļ¯āˇ’āļąāļēāļšāˇŠ āļ…āļŠāļ‚āļœāˇ” āˇ€āˇ– āˇ€āˇ’āļ āļŊāˇŠâ€āļēāļēāļšāˇŠ.

āļ´āļģāˇāļ¸āˇ’āļ­āˇ“āļąāˇŠ:

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

Add (string value)

āˇ€āˇ’āˇƒāˇŠāļ­āļģ āļšāˇ’āļģāˇ“āļ¸

yyyy

Year

q

Quarter

m

Month

y

Day of year

w

Weekday

ww

Week of year

d

Day

h

Hour

n

Minute

s

Second


Count - A numerical expression specifying how often the Add interval will be added (Count is positive) or subtracted (Count is negative).

Date - A given date or the name of a Variant variable containing a date. The Add value will be added Count times to this value.

āļ‹āļ¯āˇāˇ„āļģāļĢāļē:


Sub example_dateadd
    MsgBox DateAdd("m", 1, "1/31/2004") &" - "& DateAdd("m", 1, "1/31/2005")
End Sub

Please support us!