Date.ToRecord
Returns a record containing parts of the date value.
function (date
as date) as record
Returns a record containing the parts of the given date value,
date
. Date
Convert the
#date(2011, 12, 31)
value into a record containing parts from the date value.Date.ToRecord(#date(2011, 12, 31))
[ Year = 2011, Month = 12, Day = 31 ]
Last modified 4yr ago