All,
I have the following dataset, if the value of the 1st observation in column text is "yyy" then output only first obs or else output all the
observation from the datasets
Case 1
have
text id1 id2 id3
yyy 123 145 345
zzz 899 134 878
ccc 881 jk kjk
want
text id1 id2 id3
Case 2
have
text id1 id2 id3
mmm 123 145 345
zzz 899 134 878
ccc 881 jk kjk
want
text id1 id2 id3
mmm 123 145 345
zzz 899 134 878
ccc 881 jk kjk
Thanks
Al
It doesn't look like you want to output ANY observations.
data want ;
set have ;
if _n_=1 and text='yyy' then stop;
run;
sorry i do .. my mistake ..
i want the following dataset with only 1st obs if text="yyy"
text id1 id2 id3
yyy 123 145 345
A simple variation on Tom's program handles both cases:
data want;
set have;
output;
if _n_=1 and text='yyy' then stop;
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.