MakeDate
The MakeDate function evaluates specified values for time units (year, month, and day) and returns an ISO date time.
For more information (including use case exercises) about date functions, see the Common Date Functions and Use Cases QuickStart.
Syntax
MakeDate(year, month, day)
Function arguments:
- year (required) - a number representing the year
- month (required) - a number representing the month
- day (required) - a number representing the day of the month
Example
MakeDate(2019,1,31)
- Returns
2019-01-31 00:00:00
.