Proc contents shows this : VARIABLE TYPE LEN FORMAT
-------- ----- --- ---------
SIZEA NUM 5 MGBYTES. I'm basically printing this variable with put in the output file: DATA _NULL_;
SET ;
FILE FOUT NOPRINT ;
IF _N_ = 1 THEN DO ;
PUT 'SYSTEM|'
'SIZE|'; PUT SYSTEM '|'
SIZEA '|';
RUN; I also checked the NOTDIGIT.. but my sas experience is limited. No clue on how to use to have the number converted to bytes.
... View more