amount_in_words_euro

Use the amount_in_words_euro function to convert a number into a notation representing an amount of currency, written out in words. The output is localized based on the current output language. The currency used is always the Euro.

 amount_in_words_euro ( input )

This function returns a value of type TEXT.

The function has one parameter:

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

The currency used to produce the amount is always the Euro, regardless of the output language. The input value is rounded to cents.

Examples

amount_in_words_euro (0.12) results in "zero euro and twelve cent"

amount_in_words_euro (-0.12) results in "zero euro and twelve cent negative"

amount_in_words_euro (1234567.89) results in "one million two hundred and thirty-four thousand five hundred and sixty-seven euro and eighty-nine cent"

amount_in_words_euro (1234567.89) results in "een miljoen tweehonderdvierendertigduizend vijfhonderdzevenenzestig euro en negenentachtig cent" (output language NLD)

amount_in_words_euro (12.344) results in "twelve euro and thirty-four cent"

amount_in_words_euro (12.345) results in "twelve euro and thirty-five cent"