In the below example,
data test;
input ID Name$;
datalines;
121 Kiran
768 Kumar
tyu Raj
;
run;
data good bad;
set test;
if _error_=1 then output bad;
else output good ;
run;
proc print data=bad;
run;
The dataset 'bad' is showing 0 observations, however i expect it to list the last observation from dataset, as there is a data error (_error_=1); Could some one please explain why it is not showing up.
You will want to read this:
https://v8doc.sas.com/sashtml/lrcon/z0695104.htm
Basically as the datastep runs its loop, it goes line by line into the PDV, _error_ is a variable in that PDV which does not get written to the output dataset. So after the first run; that variable no longer exists. It is created again in the second step, but as there are no errors then the _error_ variable is always false, hence no observations. This will work as the if _error_ is in the same step:
data bad good; input ID Name$; if _error_ then output bad; else output good; datalines; 121 Kiran 768 Kumar tyu Raj ; run;
You will want to read this:
https://v8doc.sas.com/sashtml/lrcon/z0695104.htm
Basically as the datastep runs its loop, it goes line by line into the PDV, _error_ is a variable in that PDV which does not get written to the output dataset. So after the first run; that variable no longer exists. It is created again in the second step, but as there are no errors then the _error_ variable is always false, hence no observations. This will work as the if _error_ is in the same step:
data bad good; input ID Name$; if _error_ then output bad; else output good; datalines; 121 Kiran 768 Kumar tyu Raj ; run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.