Text.From
Syntax
Text.From(value as any, optional culture as nullable text) as nullable text
About
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 (for example, "en-US").
Example 1
Create a text value from the number 3.
Usage
Text.From(3)
Output
"3"