Numbers and text
Converting number to text: If you apply the & operator or JoinText() to numbers, they convert the numbers to text values, using the number format specified for the variable or function in whose definition they appear. You can use this effect to convert (“coerce”) numbers into text values, for example:
123456789 & → '123.5M'
123456789 & → '$123,456,789.00'
'The date is: ' & 38345 → The date is: Thursday, December 25, 2008'
You can also control the format used when converting numbers to text with the NumberToText function.
Converting text to number: You can use the Evaluate function to convert a text representation of a number into an actual number, for example:
Evaluate('12350') → 12.35K
Evaluate() can convert any number format that Analytica can handle in an expression— and no others. Thus, it can handle decimals, exponent format, dates, True
or False
, a $
at the start of a number (which it ignores), and letter suffixes, like K
and M
.
An alternative method, for converting text to a number is to use the Coerce Number
qualifier on a user-defined function. For example, you could define a user-defined function such as:
ParseNum(X: Coerce Number) := X
See Also
- Converting Numbers to Text
- NumberToText
- Numbers
- IsNumber
- IsText
- Math functions
- Text functions
- Read and write text files
- Multiple formats in one table
Enable comment auto-refresher