TRUECALC
Functions

ARABIC

Convert Roman numeral to integer

Try it

When to use it

When should I use ARABIC?

Use ARABIC when you need to convert a Roman numeral string into an integer — for example, to process historical data, catalog numbering, or chapter identifiers that use Roman numerals.

Used in

operations

Syntax

ARABIC(roman_text)

Examples

=ARABIC("XIV") // => 14
=ARABIC("MMXIII") // => 2013
=ARABIC("I") // => 1

On this page