amount_in_words_euro

This function gives the amount specified in words using the Euro as the currency. The language used depends on the setting ITP OutputLanguage in the ITP/Server Administrator.

amount_in_words_euro ( amount_in_numbers )

The result of the function is of type TEXT.

This function requires one parameter:

  1. amount_in_numbers, type NUMBER. This is the amount in a number that will be converted to words.

The spelling of the euro and cent in the respective languages are based on the formal EC guidelines used in EC Legislative acts.

Note

This function does not convert the amount from local currencies to euros or vice versa, only the name of the currency changes.

Example

#
@(amount_in_words_euro (15.36))
#
(* the result document will show: fifteen euro and thirty-six cent *)

Be aware that the decimal symbol and the digit-grouping symbol (thousand separator) depend on the ITP Model language setting. The English model language setting uses a period (.) as decimal symbol and a comma as digit grouping symbol whereas Dutch and German use a comma as decimal symbol and the period as thousand separators.

This function is supported for number values limited to MAXINT(2^31 == 2,147,483,648). Above 2,147,483,648 the result of the function is undefined (although for some languages the result might be correct). You are recommended not to use this function for values over 2,147,483,648.