Link to home
Start Free TrialLog in
Avatar of f haque
f haqueFlag for Bangladesh

asked on

How to write Roman number from 4000 to Above in excel using ROMAN function.

I know how to write roman number in excel from 1 to 3999 using ROMAN function. But How shall I write from 4000 to Above in excel using ROMAN function.
SOLUTION
Avatar of Martin Liss
Martin Liss
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
From the Roman() function help document:
If number is greater than 3999, the #VALUE! error value is returned

So, you can not use the Roman() function for values "4000 and above".
Avatar of Bill Prew
Bill Prew

The Roman() function stops at 3999 because that's the end of the "simple" roman numbers that can be represented with the basic letters (I, V, X, L, C, D, M), and adherring to the constraint that you can only repeat a letter at most 3 times in a row.  So there is some controversy over whether MMMM is valid as 4000.  Some people say yes, some no.  I sided with the yes on this question, and once you get to 3999 you use multiple M's to get larger than that.

There is evidence that Romans themselves worked around this by having a syntax for multiplying one of the base letters by 1000.  The two ways I have heard that they did this were putting a line over the top of the letter, or enclosing it in parens.  So both (M) and the image below could represent 1,000,000.User generated imageSo while the Romans() function limits itself to 3999, there are acceptable ways to represent larger numbers in Roman Numerals.


»bp
Avatar of f haque

ASKER

Is there any unicode tool so that we can write roman number largr than 3999.
Not that I am aware of.  In HTML you can use overline, as in style="text-decoration:overline".  And things like Word support this as a modifier to characters, sort of like underline.  But I don't know of a single symbol code that has it for say an "M".


»bp