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

hi I haveatablewhere I want to get max date  for example

have

id. Date            type.  comp

a. 07/15/15       A1.      Yes

b 07/16/15.        A2.       No

a 07/18/15.         A2.      Yes

c 07/15/15.          A3.       No

what I want is to pull the max date which is he last time it was service

out put

a.07/18/15   A2.   yes

b 07/16/15.  A2    No

c 07/15/15.  A3.    No

thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Jagadishkatam
Amethyst | Level 16

Also try the sql method

proc sql;

create table want as select a.* from have as a, (select max(date) as date, id from have group by id) as b

where a.id=b.id and a.date=b.date ;

quit;

Thanks,

Jag

Thanks,
Jag

View solution in original post

2 REPLIES 2
Jagadishkatam
Amethyst | Level 16

Please try

proc sort data=have;

by id date;

run;

data want;

set have;

by id date;

if last.id;

run;

Thanks,

Jag

Thanks,
Jag
Jagadishkatam
Amethyst | Level 16

Also try the sql method

proc sql;

create table want as select a.* from have as a, (select max(date) as date, id from have group by id) as b

where a.id=b.id and a.date=b.date ;

quit;

Thanks,

Jag

Thanks,
Jag

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

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
  • 2 replies
  • 1417 views
  • 0 likes
  • 2 in conversation