number_in_words

Use the number_in_words function to convert a number into a notation representing an integral number, written out fully in words. The output is localized based on the current output language.

 number_in_words ( input )

This function returns a value of type TEXT.

The function has one parameter:

  1. input, type NUMBER. The number to be converted. This function supports numbers for all output languages up to 1000 billion (exclusive). Results for values outside this range are undefined.

The input value is rounded to an integer number.

Examples

number_in_words (12) results in "twelve"

number _in_words (-12) results in "minus twelve"

number _in_words (1234567.89) results in "one million two hundred and thirty-four thousand five hundred and sixty-eight"

number_in_words (1234567.89) results in "een miljoen tweehonderdvierendertigduizend vijfhonderdachtenzestig" (output language NLD)

number_in_words (12.4) results in "twelve"

number_in_words (12.5) results in "thirteen"

number_in_words (0) results in "zero"