Converts a Roman numeral to an Arabic numeral.
تعمل هذه الدالة في Google Sheets كما تعمل في Excel تمامًا — بالصياغة والوسائط نفسها.
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")النتيجة: 7
Converts the Roman numeral VII to the integer 7.
=ARABIC("MCMXC")النتيجة: 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.