ROMANO

Converts a number into a Roman numeral. The value range must be between 0 and 3999. A simplification mode can be specified in the range from 0 to 4.

Sintassi

ROMANO(Numero [; Modo])

Numero la cifra da convertire in numero romano.

Mode: optional value ranging between 0 to 4 that indicates the degree of simplification to be used in the conversion. The higher the value, the greater is the simplification of the Roman number.

Esempi

=ROMAN(999) returns "CMXCIX" (uses simplification mode equal to zero, which is the default).

=ROMANO(999;0) restituisce "CMXCIX".

=ROMANO(999;1) restituisce "LMVLIV".

=ROMANO(999; 2) restituisce "XMIX".

=ROMANO(999;3) restituisce "VMIV".

=ROMANO(999;4) restituisce "IM".

=ROMAN(0) returns "" (empty text).