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

Hi All, 

The solutions of the community have always helped me and saved lot of time too. Here I am again with another problem. It is looking very simple but I am not able to do it by simple program.

My input is as follows

1A
1A
1B
2A
2A
2A
2B
2B
3A
3B
3C
3C
3C
3C
4D
4D
4E
5A
5B
5C

 

and I am looking for output where I get unique values of sub-group as follows

1A
1B
2A
2B
3A
3B
3C
4D
4E
5A
5B
5C

 

Thanks in advance !

1 ACCEPTED SOLUTION

Accepted Solutions
ChrisNZ
Tourmaline | Level 20

Like this?

 

 

proc sort nodupkey;

  by VAR1 VAR2;

View solution in original post

2 REPLIES 2
ChrisNZ
Tourmaline | Level 20

Like this?

 

 

proc sort nodupkey;

  by VAR1 VAR2;

deega
Quartz | Level 8
Wow !
Yes, its working .....

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1217 views
  • 1 like
  • 2 in conversation