i have a datset
data test;
input store sales;
cards;
1 .
1 200
1 300
1 .
2 .
2 300
2 150
2 560
3 900
3 560
3 .
;
run;
i want the first non missing value of each store?
data test;
input store sales;
cards;
1 .
1 200
1 300
1 .
2 .
2 300
2 150
2 560
3 900
3 560
3 .
;
run;
data want;
set test;
if not missing(sales) then
output;
run;
data want2;
set want;
by store;
if first.store;
run;
Here is a one-step solution, for the sake of efficiency:
data want;
set test;
by store sales notsorted;
ct=ifn(first.store,0,ct);
ct+(first.sales and not missing(sales));
if ct=1;
drop ct;
run;
It's easy with a WHERE statement:
data want;
set have;
by store;
if first.store;
where sales > .;
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.