date from ymd(year, month, day)date Type: (Number{year}, Number{month}, Number{day}) -> Date

Creates a date from the given year, month and day.

Months and days start at 1: 1{month} is January, and 1{day} is the first day of the month.

ExamplesClick an example to insert it
date from ymd(1998{year}, 07{month}, 10{day})date{1998-07-10}
date from ymd(2004{year}, 08{month}, 06{day})from text("6 August 2004")