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;
length x $15;
input val @@;
select (val);
when(1) x = 'One';
when(2) x = 'Two';
when(3,4) x = 'Three or Four';
otherwise x = 'Something else';
end;
cards;
1 2 3 4 5 6 7
;run;
proc print;run;
length x $15;
input val @@;
cards;
1 2 3 4 5 6 7;