2020-05-07 12:04:00 +10:00
|
|
|
{
|
|
|
|
"name": "make_date",
|
|
|
|
"type": "function",
|
2020-07-02 01:46:48 +01:00
|
|
|
"groups": ["Date and Time"],
|
2020-05-07 12:04:00 +10:00
|
|
|
"description": "Creates a date value from year, month and day numbers.",
|
2022-01-13 08:56:17 -05:00
|
|
|
"arguments": [{
|
|
|
|
"arg": "year",
|
|
|
|
"description": "Year number. Years 1 to 99 are interpreted as is. Year 0 is invalid."
|
|
|
|
}, {
|
|
|
|
"arg": "month",
|
|
|
|
"description": "Month number, where 1=January"
|
|
|
|
}, {
|
|
|
|
"arg": "day",
|
|
|
|
"description": "Day number, beginning with 1 for the first day in the month"
|
|
|
|
}],
|
|
|
|
"examples": [{
|
|
|
|
"expression": "make_date(2020,5,4)",
|
|
|
|
"returns": "date value 2020-05-04"
|
|
|
|
}],
|
|
|
|
"tags": ["year", "date", "month", "numbers", "day"]
|
2020-05-07 12:04:00 +10:00
|
|
|
}
|