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

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 1695 views
  • 3 likes
  • 4 in conversation