Returns a date-only value with given numerical year, month and day values.
Function
result = datefromparts(year, month, day)
Arguments
Argument | Data Type |
year | integer |
---|---|
month | integer |
day | integer |
result | date |
Comments
Converts individual numbers into a date result.
This function operates without regard to the local time zone. See Dates, Times and Time Zones.
Examples
result = datefromparts(2019,1,10) /* result is the date 10 January 2019 */