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.
nvar = input(income,comma6.2);
format income comma6.2;
data old;
set old(rename=(income=income_tx));
length income 8.;
income=input(income_tx,comma6.2);
run;
data old;
infile blah recfm=v lrecl=256 dsd dlm='09'x missover firstobs=2;
length income 6;
input income;
run;
data test;
input f1$ f2 f3 f4$;
format f1 f4 $3.;
cards;
test 1.1 2.2 test
test 3.3 4.4 test
;run;
proc print;run;
data test;
length f1 $3 f2 f3 8. f4 $3;
input f1$ f2 f3 f4$;
cards;
test 1.1 2.2 test
test 3.3 4.4 test
;run;
proc print;run;
data _null_;
date = '01JAN2007'd;
put date=;
format date ddmmyy10.;
run;