Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 18
Program
ROMAN informat


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
;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page