Forum Discussion
ABLRP
4 years agoRegular 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. I can't use the group by function becaus...
- 4 years ago
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.
ABLRP
4 years agoRegular 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.