data l;
input age no id$;
cards;
4 1 nani
5 2
6 3 rja
run;
data l2 l3;
set l;
if id ne " " then output l3;
else output l2;
run;
if the id =" " then in dataset l2 is getting 0 obs but the values age and no is not blank i want the output l2
output
age no id
5 2
Nothing wrong with your code! Your problem is in creating file L .. it is only reading in two records. Try your code with the following:
data l;
infile cards truncover;
input age no id$;
cards;
4 1 nani
5 2
6 3 rja
run;
Nothing wrong with your code! Your problem is in creating file L .. it is only reading in two records. Try your code with the following:
data l;
infile cards truncover;
input age no id$;
cards;
4 1 nani
5 2
6 3 rja
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 save with the early bird rate—just $795!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.