BookmarkSubscribeRSS Feed
PRISCILABRA
Fluorite | Level 6

I WOULD LIKE TO REMOVE DUPLICATES FROM A VARIABLE KEY TO THE MAXIMUM DATE OF ANOTHER VARIABLE AND I DO NOT KNOW HOW, CAN YOU HELP ME?

Example:

 

COLUMN A(KEY)  COLUMN B(DATE)

1                             20170422

1                             20170423

1                             20170425

 

I NEED THE SAME KEY WITH MAXIMUM DATE, REMOVING THE DUPLICATED KEYS KEEPING THE KEYWORK WITHOUT DUPLICATION FOR THE LAST DATE AVAIABLE TO THIS KEY. CAN YOU UNDERSTAND ME? TKS

4 REPLIES 4
novinosrin
Tourmaline | Level 20

proc sql;

select *

from have

group by key

having date=max(date);

quit;/*date is column b*/

PRISCILABRA
Fluorite | Level 6

Sorry for my answer, thanks a lot for your help.

 

 

Astounding
PROC Star

SAS contains tools to handle this:

 

proc sort data=have;

by key date;

run;

 

data want;

set have;

by key date;

if last.key;

run;

RW9
Diamond | Level 26 RW9
Diamond | Level 26

Nope, can't understand you, maybe your CapsLock is stuck?  Maybe sort the data in order, then take last or first value?

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 4 replies
  • 7433 views
  • 6 likes
  • 4 in conversation