이 함수는 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.