Hi,
Lets says I have the following table :
| CUSTOMER_ID | ID | COMMENTS |
|---|---|---|
| 12345 | 30 | feadsaf |
| 12345 | 32 | argaefr |
| 12345 | 33 | dfasdsa |
| 11111 | 46 | fdasdfasd |
| 11111 | 48 | fadsfdas |
| 34567 | 78 | afsdffsd |
What is the proper sas or sql query to create a table where I would have the customer_id and the comments only for the latest ID?
Thank you for your help and time.
Use a data step and last.
proc sort data=have; by customer_id id;
data want;
set have;
by customer_id;
if last.customer_id;
run;
OR two proc sorts;
proc sort data=have; by customer_id descending id; run;
proc sort data=have out=want nodupkey; by customer_id; run;
Use a data step and last.
proc sort data=have; by customer_id id;
data want;
set have;
by customer_id;
if last.customer_id;
run;
OR two proc sorts;
proc sort data=have; by customer_id descending id; run;
proc sort data=have out=want nodupkey; by customer_id; run;
Got it to work.
Thank you very much for your help!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.