Forum Discussion

mmazzalay's avatar
mmazzalay
Frequent Visitor
6 years ago
Solved

Date Filters

Hi community! I need to filter a date column by a selected value on the report of an other date column, which is a date too. I´ll be more especific, I have: *Date Column 1, wich can be filter by th...
  • v-lionel-msft's avatar
    v-lionel-msft
    6 years ago

    Hi mmazzalay ,

     

    Please create a measure and add it to the filter on the visual.

    Measure = 
    IF(
        MAX('Date Table 2'[Date]) > SELECTEDVALUE('Date Table 1'[Date]),
        1, 0
    )

     

    Best regards,
    Lionel Chen

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