Text.From
Crea un valore di testo dal valore specificato.
Syntax
Text.From(
value as any,
optional culture as text
) as text
Remarks
Restituisce la rappresentazione di testo di value
. value
può essere un valore number
, date
, time
, datetime
, datetimezone
, logical
, duration
o binary
. Se il valore specificato è Null, Text.From
restituisce Null. È anche possibile specificare un valore culture
facoltativo, ad esempio "it-IT".
Examples
Example #1
Creare un valore di testo dal numero 3.
Text.From(3)
Result:
"3"
Category
Text.Conversions from and to text