Converts a Roman numeral to an Arabic numeral.
Questa funzione funziona in Google Sheets esattamente come in Excel — stessa sintassi e stessi argomenti.
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")Risultato: 7
Converts the Roman numeral VII to the integer 7.
=ARABIC("MCMXC")Risultato: 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.