Comment on page
Date.ToText
Returns a textual representation of the Date value.
function (optionaldate
as nullable any, optionalformat
as nullable any, optionalculture
as nullable any) as nullable any
Returns a textual representation of
date
, the Date value, date
. This function takes in an optional format parameter format
. For a complete list of supported formats, please refer to the Library specification document.Date
Get a textual representation of #date(2010, 12, 31).
Date.ToText(#date(2010, 12, 31))
"12/31/2010"
Get a textual representation of #date(2010, 12, 31) with format option.
Date.ToText(#date(2010, 12, 31), "yyyy/MM/dd")
"2010/12/31"
Last modified 5yr ago