numerals

Use the numerals function to convert a number into an unformatted textual representation. The resulting value is rounded to the nearest integral value.

 numerals ( input )

This function returns a value of type TEXT.

The function has one parameter:

  • input, type NUMBER. The number to convert.

Examples

numerals (1234567) results in "1234567"

numerals (1234567.8) results in "1234568"

numerals (100 / 3) results in "33"