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

Hi Team,

 

I need to delete the duplicate IDs with certain conditions from following dataset.

 

Data R;
input Id sal flag;
cards;
1 100 1
1 100 0
2 200 0
2 200 1
3 300 0
4 400 0
4 500 0
;
Run;

 

1. ID should be unique

2. If flag has '1' / '0' on same ID then need to keep the row with '1'

3. If flag has only '0' on ID then need to keep that row

4. If flag has multiple '0' with respect to same ID then need to keep any one or SAL is different then any

 

The output could be : 

1 100 1

2 200 1

3 300 0

4 400 0

 

Looking for kind support.

 

Regards,

Uma Shanker Saini

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20

Try this:

 

 

proc sql;

create table want as

select *

from r

group by id

having sal=max(sal) and flag=max(flag);

quit;

View solution in original post

3 REPLIES 3
novinosrin
Tourmaline | Level 20

Data R;

input Id sal flag;

cards;

1 100 1

1 100 0

2 200 0

2 200 1

3 300 0

4 400 0

4 500 0

;

Run;

 

proc sort data=r out=temp;

by id sal descending flag;

run;

 

data want;

set temp;

by id sal;

if first.id and first.sal;

run;

 

 

 

umashankersaini
Quartz | Level 8

Hi Novin,

 

Thanks for your quick help and code works perfectly fine as per requirement.

 

It would be greatful if we can use it via proc sql because i need to implement it into approx 40 million obs and trying for SAS DI.

 

Regards,

Uma Shanker Saini

novinosrin
Tourmaline | Level 20

Try this:

 

 

proc sql;

create table want as

select *

from r

group by id

having sal=max(sal) and flag=max(flag);

quit;

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 9979 views
  • 4 likes
  • 2 in conversation