Roman
Syntax:¶
ROMAN(number, [form])
- number: The Arabic number you want to convert to Roman numerals. It must be a positive integer between 1 and 3999.
- form (optional): A number between 0 and 4 that specifies the type of Roman numeral formatting.
0or omitted: Classic Roman numerals (e.g., IV for 4, IX for 9).1to4: Progressive simplification of the numeral format.1: More concise form (less traditional).4: Most simplified form.
Examples:¶
-
=ROMAN(1999)would returnMCMXCIXbecause 1999 in Roman numerals is MCMXCIX. -
=ROMAN(4)would returnIVbecause 4 in Roman numerals is IV. -
=ROMAN(4, 1)would returnIIIIas a simplified form of Roman numerals for 4. -
=ROMAN(2024, 0)would returnMMXXIVbecause 2024 in Roman numerals is MMXXIV. -
=ROMAN(499, 4)would returnIDas the most simplified representation of 499.
Note: If the input number is outside the valid range (1 to 3999), the
ROMANfunction will return a#VALUE!error.