Online File
Rick Aster: Professional SAS Programming Shortcuts: Contents
data work.cntl1 / view=work.cntl1; retain type 'I' fmtname 'ROMAN' hlo 'UJ'; do label = 1 to 9999; start = put(label, roman21.); output; end; run; proc format cntlin=work.cntl1; run; data _null_; input x roman21.; put x; datalines; X XI L C D MMI MMMMMM ;