BookmarkSubscribeRSS Feed
Almoha
Calcite | Level 5


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

3 REPLIES 3
Tom
Super User Tom
Super User

It doesn't look like you want to output ANY observations.

 

data want ;
  set have ;
  if _n_=1 and text='yyy' then stop;
run;
Almoha
Calcite | Level 5

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

 

 

Astounding
PROC Star

A simple variation on Tom's program handles both cases:

 

data want;

set have;

output;

if _n_=1 and text='yyy' then stop;

run;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 842 views
  • 1 like
  • 3 in conversation