Logical.ToText
Returns the text "true" or "false" given a logical value.
function (optionallogicalValue
as nullable any) as nullable any
Creates a text value from the logical value
logicalValue
, either true
or false
. If logicalValue
is not a logical value, an exception is thrown.Logical
Create a text value from the logical
true
.Logical.ToText(true)
"true"
Last modified 4yr ago