data have;
input student $ time $ flag;
datalines;
A 1:20 0
A 1:35. 1
A 2:40 0
B 5:30. 0
B 5:35. 0
B 6:10. 1
;
data want;
merge have
have(firstobs = 2 keep = flag rename = flag = f);
if f or flag;
drop f;
run;
data have;
input student $ time $ flag;
datalines;
A 1:20 0
A 1:35. 1
A 2:40 0
B 5:30. 0
B 5:35. 0
B 6:10. 1
;
data want;
merge have
have(firstobs = 2 keep = flag rename = flag = f);
if f or flag;
drop f;
run;
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
Explore Now →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.