Power Query
published
Search
⌃K

Text.From

Text.From

Creates a text value from the given value.
function (optional value as nullable any, optional culture as nullable any) as nullable any

Description

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.

Category

Text.Conversions from and to text

Examples

Create a text value from the number 3.
Text.From(3)
"3"