BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
kmardinian
Quartz | Level 8

Hi, I have a dataset that looks like this:

 

ID    TRT   VID    OUTCOME

1       0        1             1

1       0        2             0

1       0        1             1

1       0        2             0

2       1        1             1

2       1        2             1

 

I would like my final dataset to look like this:

 

ID    TRT   VID    OUTCOME

1       0        1             1

2       1        1             1

 

 

I would like to only have unique ID numbers for when outcome=1 in a separate dataset, so that I can then run analyses on those ID numbers. Thank you!

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

@kmardinian wrote:

Hi, I have a dataset that looks like this:

 

ID    TRT   VID    OUTCOME

1       0        1             1

1       0        2             0

1       0        1             1

1       0        2             0

2       1        1             1

2       1        2             1

 

I would like my final dataset to look like this:

 

ID    TRT   VID    OUTCOME

1       0        1             1

2       1        1             1

 

 

I would like to only have unique ID numbers for when outcome=1 in a separate dataset, so that I can then run analyses on those ID numbers. Thank you!


If you don't need the other variables at all easiest may be:

Proc sql;
    create table idonly as
    select distinct id
    from yourdatasetname;
quit;

View solution in original post

3 REPLIES 3
ballardw
Super User

@kmardinian wrote:

Hi, I have a dataset that looks like this:

 

ID    TRT   VID    OUTCOME

1       0        1             1

1       0        2             0

1       0        1             1

1       0        2             0

2       1        1             1

2       1        2             1

 

I would like my final dataset to look like this:

 

ID    TRT   VID    OUTCOME

1       0        1             1

2       1        1             1

 

 

I would like to only have unique ID numbers for when outcome=1 in a separate dataset, so that I can then run analyses on those ID numbers. Thank you!


If you don't need the other variables at all easiest may be:

Proc sql;
    create table idonly as
    select distinct id
    from yourdatasetname;
quit;
kmardinian
Quartz | Level 8

Thank you, that is exactly what I was looking for!

novinosrin
Tourmaline | Level 20
data have;
input ID    TRT   VID    OUTCOME;
cards;
1       0        1             1
1       0        2             0
1       0        1             1
1       0        2             0
2       1        1             1
2       1        2             1
;

proc sort data=have(where=(outcome=1)) out=want nodupkey;
by id;
run;

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2875 views
  • 0 likes
  • 3 in conversation