Forum Discussion

Bobbo's avatar
Bobbo
Regular Visitor
6 years ago
Solved

Help with Filters Please

I have a fairly simple filtering request that I need assistance with. I need a column to filter all columns in my table. My first column is the date a customer was last edited. I need this column to ...
  • Anonymous's avatar
    Anonymous
    6 years ago

    Hi Bobbo ,

     

    Create a measure like below and add it to visual filter.

    Measure = 
    var most_recent = CALCULATE(MAX('Table'[Policy Date]),ALLEXCEPT('Table','Table'[Client]))
    return
    IF(SELECTEDVALUE('Table'[Policy Date])=most_recent,1,BLANK())

     

     

    Best Regards,

    Jay

     

    Community Support Team _ Jay Wang

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