data l;input age no id$;cards;4 1 nani5 2 6 3 rjarun;
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
6 3 rja
run;
View solution in original post
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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.
Browse our catalog!