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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
ABLRP
Regular Visitor

Create custom column identifying max value per id

Hello,

 

I am trying to flag the most recent date per ID using a custom column.

 

Example as below. I want to mark the rows that have a red dot.

ABLRP_0-1646821878872.png

 

I can't use the group by function because I want to retrive another column value and then I cannot extend the table since I am in direct query mode.

 

Could you please help me?

 

Kind regards,

Barbara

1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @ABLRP ,

 

Based on your description, you can create the following virtual table:

Table 2 =
SUMMARIZE (
    'Table',
    'Table'[PN M],
    "Last_date",
        CALCULATE (
            MAX ( 'Table'[Date] ),
            FILTER ( ALL ( 'Table' ), 'Table'[PN M] = MAX ( 'Table'[PN M] ) )
        )
)

vhenrykmstf_0-1647337504142.png

vhenrykmstf_1-1647337530325.png


If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-henryk-mstf
Community Support
Community Support

Hi @ABLRP ,

 

Based on your description, you can create the following virtual table:

Table 2 =
SUMMARIZE (
    'Table',
    'Table'[PN M],
    "Last_date",
        CALCULATE (
            MAX ( 'Table'[Date] ),
            FILTER ( ALL ( 'Table' ), 'Table'[PN M] = MAX ( 'Table'[PN M] ) )
        )
)

vhenrykmstf_0-1647337504142.png

vhenrykmstf_1-1647337530325.png


If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

ABLRP
Regular Visitor

Hello @amitchandak 

 

Thank you for your reply.

 

There is no way to do it by creating a column? I basically want this coulmn to be able to filter out all the dates I don't need and keep only the most recent date per PN M.

amitchandak
Super User
Super User

@ABLRP , then you have create a measure

 

maxx(filter(allselected(Table), Table[PN M] = max(Table[PN M]) ), [Created Date])

 

 

Logic of column is too complex to have it in direct query

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.