This function converts a Number field value or the result of a numeric calculation to words.
Parameter
a - A fractional number to be converted into words.
Return value
The return value is a String.
Example
The return value of the following statement is ten and 12/100.
ToWords(10.12)
This function converts a Number field value or the result of a numeric calculation to words.
Parameter
a - A BigInt value to be converted into words.
Return value
The return value is a String.
Example
The return value of the following statement is twenty and xx/100.
ToWords(20)
This function converts a Number field value or the result of a numeric calculation to words.
Parameter
a - A Currency value to be converted into words.
Return value
The return value is a String.
Example
The return value of the following statement is three and 15/100.
ToWords($3.15)
This function converts a Number field value or the result of a numeric calculation to words.
Parameters
Return value
The return value is a String.
Example
The return value of the following statement is three and 1/10.
ToWords(3.14, 1)
This function converts a Number field value or the result of a numeric calculation to words.
Parameters
Return value
The return value is a String.
Example
The return value of the following statement is three and x/10.
ToWords(3, 1)
This function converts a Number field value or the result of a numeric calculation to words.
Parameters
Return value
The return value is a String.
Example
The return value of the following statement is three and 5/10.
ToWords($3.45, 1)