March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
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
Solved! Go to Solution.
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] ) )
)
)
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.
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] ) )
)
)
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.
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.
@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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
127 | |
85 | |
69 | |
53 | |
44 |
User | Count |
---|---|
202 | |
106 | |
100 | |
64 | |
56 |