I have data-set with 10 variables, ID, R1,R2,R3,R4,R5,R6,R7,R8,R9....I have to write in such a way that output should contain records where R1-R9 is not null for atleast one of them......
Same as Ballard, with the N function:
data want;
set have;
if n(of r1-r9) >=1;
run;
data want;
set have;
if nmiss(of r1-r9) <9;
run;
would be one way.
Same as Ballard, with the N function:
data want;
set have;
if n(of r1-r9) >=1;
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!
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.