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.
options obs=MAX;
data NBLIB.data;
infile 'G:\Studies\data.txt' delimiter='09'x
MISSOVER DSD lrecl=32767 firstobs=2 ;
/* change var20000 to whatever number you actually */
/* need */
informat var1-var20000 $13.;
length var1-var20000 $13;
input Var1-Var20000;
run;