v2: Added Year/Month support to DateAdd/DateDiff. #287
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Documentation
For the
DateAdd
andDateDiff
functions:Specify a
TimeUnits
string that starts withMo
to add/compare months.Specify a
TimeUnits
string that starts withY
to add/compare years.Any
TimeUnits
string that starts withM
, but doesn't start withMo
, adds/compares minutes.DateAdd
handling for days 29/30/31 of a month forMo
andY
:Where an equivalent day of the month does not exist,
DateAdd
always 'rounds downs' to the nearest extant day. The logic is similar to that ofSysDateTimePick32
controls.E.g. 19990331 + 1 month 'rounds down' to 19990430.
E.g. 20000229 + 1 year 'rounds down' to 20010228.
DateDiff
comparison with months and years:When comparing months,
DateDiff
compares theyyyyMM
portions to get an initial complete month count, it then comparesddHHmmss
portions to determine whether or not to reduce the count by 1.When comparing years,
DateDiff
compares theyyyy
portions to get an initial complete year count, it then comparesMMddHHmmss
portions to determine whether or not to reduce the count by 1.Test code