Converts a Roman numerals to an Arabic numerals
=ARABIC(roman_text)
| Parameter | Description |
|---|---|
roman_text |
The Roman numeral in text that you want to convert. |
ARABIC takes just one argument, roman_text, which should be a Roman number provided as a text string. For example, the formula below converts "VII" to
=ARABIC("VII") // returns 7
=ARABIC("L") // returns 50
=ARABIC("C") // returns 100
=ARABIC("M") // returns 1000
=ARABIC("MM")+1 // returns 2001
The ROMAN function performs the opposite conversion:
=ROMAN(2021) // returns "MMXXI"
=ARABIC("MMXXI") // returns 2021