Converts a Roman numeral to an Arabic numeral.
Ta funkcja działa w Arkuszach Google tak samo jak w Excelu — ta sama składnia i argumenty.
ARABIC(text)The ARABIC function takes a text string representing a Roman numeral and converts it into its corresponding integer value. It is the inverse of the ROMAN function and supports values up to 255.
=ARABIC("VII")Wynik: 7
Converts the Roman numeral VII to the integer 7.
=ARABIC("MCMXC")Wynik: 1990
Converts the Roman numeral MCMXC to the integer 1990.
The function will return a #VALUE! error if the input string is not a valid Roman numeral.