Text.From
Creates a text value from the given value.
function (optionalvalue
as nullable any, optionalculture
as nullable any) as nullable any
Returns the text representation of
value
. The value
can be a number
, date
, time
, datetime
, datetimezone
, logical
, duration
or binary
value. If the given value is null, Text.From
returns null. An optional culture
may also be provided.Text.Conversions from and to text
Create a text value from the number 3.
Text.From(3)
"3"
Last modified 4yr ago