BookmarkSubscribeRSS Feed
user24
Obsidian | Level 7

i want to remove if the id has not duplicate, like as below. Thisis table example i have now

 

id          desc                        i

15        W100786                 1

15        03/21/1970              2

20        K64478                   1

20        02/14/1968              2

21         M157842                1

22        W250143                1

22        02/15/2000              2

 

 

i need the table as below:

                  

id          desc                        i

15        W100786                 1

15        03/21/1970               2

20        K64478                   1

20        02/14/1968               2

22        W250143                1

22        02/15/2000               2

 

So i need to remove the id:21, because it doesn't have duplicate.

 

3 REPLIES 3
art297
Opal | Level 21

If you're data is already sorted by ID then a small data step would work:

 

data want;
  set have;
  by ID;
  if not(first.id and last.id);
run;

Art, CEO, AnalystFinder.com

LinusH
Tourmaline | Level 20

Or, if your data isn't sorted, try SQL GROUP BY, with a HAVING count(*) =2.

Data never sleeps
Ksharp
Super User

Or NOUNIQUEKEY.

 

data have;
input id          desc  : $20.                       i;
cards;
15        W100786                 1
15        03/21/1970              2
20        K64478                   1
20        02/14/1968              2
21         M157842                1
22        W250143                1
22        02/15/2000              2
;
run;


proc sort data=have out=want nouniquekey;
by id;
run;

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
  • 3 replies
  • 1725 views
  • 3 likes
  • 4 in conversation