Text function

Converts values ​​to text


Description

The Text function generates a text list from the specified parameters.


Syntax

Text (t1, t2...tn)

Examples

a = Text ("Jan", "Feb", "Mar", "Apr")

a =Jan Feb Mar Apr

b = Text("Jan", 2, 3, "Apr")

b =Jan 2 3 Apr