uppercase_roman_number

Use the uppercase_roman_number function to convert a number into a roman numeral. The output is in uppercase characters.

 uppercase_roman_number ( input )

This function returns a value of type TEXT.

The function has one parameter:

  • input, type NUMBER. The number to be converted.

This function only supports values between 1 and 3999, inclusive. Fractional parts are ignored.

The output for values outside the supported range is undefined.

Examples

uppercase_roman_number (3) results in "III"

uppercase_roman_number (2016) results in "MMXVI"