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 be set to the most recent date so that it filters all other columns. Column B is the customer name, Column C their sales, Column D their assigned sales person and so on. If I can make Column A represent that most recent date it should in turn filter all the other columns? Thank you in advance.

  • 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.

6 Replies