Forum Discussion
CA8172
Helper I
4 years agoGetting Max Date tied to specific ID
I have a list of Tracking ID's with respective Assessment ID's. The tracking ID is the same but a different assessment ID for each tracking ID. We use the same create date and tracking completion d...
- Anonymous4 years ago
Hi CA8172 ,
Create a measure and put it into the visual level filter. Set show items when the value is 1.
Measure = var _max=MAXX(FILTER(ALLSELECTED('Table'),[Date Create]=MAX('Table'[Date Create])),[Assessment Comp]) return IF(_max=MAX('Table'[Assessment Comp]),1)You can check more details from the attachment.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
freginier
Solution Sage
4 years agoCreate calculated column to assign flag and filter it
Flag =
var maxAsses = CALCULATE( MAX(Table2[Assessment ]),FILTER(Table2,EARLIER(Table2[TrackingID])=Table2[TrackingID]&&Table2[Create] = EARLIER(Table2[Create])))
return
if ( maxAsses = Table2[Assessment ],"X" )