Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
data table1b;
set table1;
code_num = input(code,3.);
run;
...
...
data table2b;
set table2;
code = put(input(code,3.),z3.);
run;
data _null_;
code1 = '33';
code = put(input(code1,3.),z3.);
put code=;
run;
23 data _null_;
24
25 code1 = '33';
26
27 code = put(input(code1,3.),z3.);
28
29 put code=;
30 run;
code=033
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
31 data _null_;
32
33 code1 = 33;
34
35 code = put(input(code1,3.),z3.);
36
37 put code=;
38 run;
NOTE: Numeric values have been converted to character values at the places given by:
(Line):(Column).
35:22
code=.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds