Forum Discussion

CA8172's avatar
CA8172
Icon for Helper I rankHelper I
4 years ago
Solved

Getting 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...
  • Anonymous's avatar
    Anonymous
    4 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.