Converts numbers to Roman numerals
=ROMAN(number, [form])
| Parameter | Description |
|---|---|
number |
Number (in Arabic numeral) you want to convert to Roman numeral. |
form |
[optional] The type of Roman numeral you want. |
The ROMAN function converts a number to a Roman numeral. For example:
=ROMAN(4) // returns "IV"
=ROMAN(9) // returns "IX"
=ROMAN(99) // returns "XCIX"
=ROMAN(100) // returns "C"
ROMAN takes two arguments: number and form. Number should be a whole number between 1 and 3999. The form argument controls the convention used for Rom
=ROMAN(1999,0) // returns "MCMXCIX"
=ROMAN(1999,2) // returns "MXMIX"
=ROMAN(1999,4) // returns "MIM"