convertToString
Use the convertToString function to change a value of type Number, Boolean, DateTime, Array, String, or Object to a Text value. You can concatenate multiple values into a single Text value.
Function format
convertToString (Number | Bollean | Datetime | Array | String | Object)
- Number | Boolean | Datetime | Array | String | Object - the value which is changed to a Text value.
convertToString examples
-
"$" + convertToString(87)
The formula returns the Text value $87.
-
convertToString([{ foo: 'bar1' }, { foo: 'bar2' }])
The formula returns the value '[{"foo":"bar1"},{"foo":"bar2"}]'