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

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 826 views
  • 1 like
  • 3 in conversation