What is the Excel formula to change text date to ‘pipe’ delimited Roman numerals (e.g. June 8, 2009 should be converted to VI|VIII|MMIX.)
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
=ROMAN(MONTH(A1))&”|”&ROMAN;(DAY(A1))&”|”&ROMAN;(YEAR(A1))
Click Here Before Posting Data or VBA Code —> How To Post Data or Code.