Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Dev-13
Helper I
Helper I

Direct query

I want to use direct query to pick out the latest record for a user. A user may have 5 records in the database and I want to pick the latest one. The latest one can be determined by the user Id and max mod id as there is a new id created every time a user registers for one. 

 

Is this the most efficient query to pick the latest record

 

 

 

SELECT

    MC.USERID

   ,OG.OrganisationID

   , MC.Id AS ModID

   , MC.TYPE AS ResID

   ,CAST(MC.EndDateTime AS DATETIME2) AS EndDate

   ,CAST(MC.ExpiryDate AS DATETIME2) ExpiryDate

   ,CASE

              WHEN ExpiryDate >= GETDATE() AND

                     IsDeleted = 0 THEN 1

              ELSE 0

       END AS Compliance

 

FROM

MC

LEFT JOIN OG

       ON MC.USERID = OG. USERID

 

INNER JOIN 

 

(

 

       SELECT

          MC.USERID

         ,MAX(MC.Id) AS Max_Record

       FROM MC

       GROUP BY MC.USERID) Latest

       ON MC.USERID = Latest.USERID

              AND MC.Id = Latest.Max_Record

1 REPLY 1
Anonymous
Not applicable

Hi @Dev-13 

The query you write is right, did you want to translate it to M code, if you want to translate it to M code, can you provide some sample data that can provide more suggestion for you.

 

Best Regards!

Yolo Zhu

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors