BookmarkSubscribeRSS Feed
MauiBound
Calcite | Level 5

I am trying to run a query in Enterprise Guide that gives me the most recent records.  I am working with mortgage tables that show multiple submits per LOAN_ID.  So what I am trying to do is to return the latest full record (50 fields) with the LOAN_ID being unique in the output.  To find the latest record, I can use either of 2 fields:

ANALYSIS_DATE (DATE)

EXECUTION_ID (NUMERIC - AUTONUMBER)

I realize that I can group by LOAN_ID and take the MAX of either of these fields, but that does not give me then newest entire record.  Can anybody point me in the right direction?

Mahalo.

4 REPLIES 4
FloydNevseta
Pyrite | Level 9

I don't use EG much, but in SQL query you have to join the summary query to the original table like in the query below. Maybe that will give you a clue to what you have to do in EG.

proc sql;

create table want as

select

     m.*

from

     mortgage_table   m

     join

     ( select loan_id, max( execution_id ) as max_id

          from mortgage_table

          group by load_id )   s

     on

     m.loan_id = s.loan_id and

     m.execution_id = s.max_id

;

quit;

Linlin
Lapis Lazuli | Level 10

you can get what you want by using  Sort task , not the query builder. first sort you data by loan_id and date, then sort by loan_id again and select the sort option

'only keep the first record of each 'Sort By' '. please check the attached screen shot.


sort option.png
MauiBound
Calcite | Level 5

Thank you Linlin.  That was exactly what I was looking for!:smileycool:

Petersas
Calcite | Level 5

you can sort in the desc order and keep only the 1st record as mentioned above!!!

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 4066 views
  • 0 likes
  • 4 in conversation