Text
Converts a value to its string representation.
Syntax
Text(value)Texte(value)
value = value to convert to a string
Remarks
This functions forces a value into its string representation, so that string processing functions can be used.
Examples
Text(2) = "2" (string comprising the character 2, rather than the number 2)Text(2)+Text(2) = "22"