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.
%macro PROCESS;
data eric;set kenny;
killed='YES';run;
%if &syserr=4 then %let warn_rc=YES;
%else %if &syserr ^= 0 %then error_rc=YES;
proc sort data = eric;by date age;run;
%if &syserr=4 then %let warn_rc=YES;
%else %if &syserr ^= 0 %then error_rc=YES;
%mend PROCESS;
%PROCESS
data _null_;
if symget(`warn_rc')='YES' then
put `A warning has occurred ';
else if symget(`error_rc') ='YES' then put
`An error has occurred';