Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Filter using different criteria

Hi, I'm trying to filter my table using 3 different options.
Simply put, depending on what option a user chooses, i want to do one of three possible filters.

Here's my tables and joined field

 

Here are the 3 sepater filters I’m trying to create

If Epic Actual End Date is between Start Date and End Date, include in filter, else hide it
If Epic Actual End Date is between Prev3IterDate and End Date, include in filter, else hide it
If Epic Actual End Date is between Start Date and Next3IterDate, include in filter, else hide it

How do I create this type of filter? I'm having trouble creating any of these.

Thank you.

  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi Anonymous ,

     

    You can create three measures to solve this problem with the bookmark navigator.

    Measures.

    Filter 1 = 
    VAR _iteration =
        MAX ( 'DataTable'[Iteration] )
    VAR _date =
        MAX ( 'DataTable'[Epic Actual End Date] )
    VAR _start =
        CALCULATE (
            MAX ( 'Table'[Start Date] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Iteration] = _iteration )
        )
    VAR _end =
        CALCULATE (
            MAX ( 'Table'[End Date] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Iteration] = _iteration )
        )
    VAR _result =
        IF ( _date >= _start && _date <= _end, 1 )
    RETURN
       _result
    Filter 2 = 
    VAR _iteration =
        MAX ( 'DataTable'[Iteration] )
    VAR _date =
        MAX ( 'DataTable'[Epic Actual End Date] )
    VAR _start =
        CALCULATE (
            MAX ( 'Table'[Prev3IterDate] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Iteration] = _iteration )
        )
    VAR _end =
        CALCULATE (
            MAX ( 'Table'[End Date] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Iteration] = _iteration )
        )
    VAR _result =
        IF ( _date >= _start && _date <= _end, 1 )
    RETURN
       _result
    Filter 3 = 
    VAR _iteration =
        MAX ( 'DataTable'[Iteration] )
    VAR _date =
        MAX ( 'DataTable'[Epic Actual End Date] )
    VAR _start =
        CALCULATE (
            MAX ( 'Table'[Start Date] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Iteration] = _iteration )
        )
    VAR _end =
        CALCULATE (
            MAX ( 'Table'[Next3IterDate] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Iteration] = _iteration )
        )
    VAR _result =
        IF ( _date >= _start && _date <= _end, 1 )
    RETURN
       _result

    Attached PBIX file for reference.

     

    Best Regards,
    Gao

    Community Support Team

     

    If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

    How to get your questions answered quickly -- How to provide sample data

1 Reply

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Anonymous ,

     

    You can create three measures to solve this problem with the bookmark navigator.

    Measures.

    Filter 1 = 
    VAR _iteration =
        MAX ( 'DataTable'[Iteration] )
    VAR _date =
        MAX ( 'DataTable'[Epic Actual End Date] )
    VAR _start =
        CALCULATE (
            MAX ( 'Table'[Start Date] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Iteration] = _iteration )
        )
    VAR _end =
        CALCULATE (
            MAX ( 'Table'[End Date] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Iteration] = _iteration )
        )
    VAR _result =
        IF ( _date >= _start && _date <= _end, 1 )
    RETURN
       _result
    Filter 2 = 
    VAR _iteration =
        MAX ( 'DataTable'[Iteration] )
    VAR _date =
        MAX ( 'DataTable'[Epic Actual End Date] )
    VAR _start =
        CALCULATE (
            MAX ( 'Table'[Prev3IterDate] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Iteration] = _iteration )
        )
    VAR _end =
        CALCULATE (
            MAX ( 'Table'[End Date] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Iteration] = _iteration )
        )
    VAR _result =
        IF ( _date >= _start && _date <= _end, 1 )
    RETURN
       _result
    Filter 3 = 
    VAR _iteration =
        MAX ( 'DataTable'[Iteration] )
    VAR _date =
        MAX ( 'DataTable'[Epic Actual End Date] )
    VAR _start =
        CALCULATE (
            MAX ( 'Table'[Start Date] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Iteration] = _iteration )
        )
    VAR _end =
        CALCULATE (
            MAX ( 'Table'[Next3IterDate] ),
            FILTER ( ALL ( 'Table' ), 'Table'[Iteration] = _iteration )
        )
    VAR _result =
        IF ( _date >= _start && _date <= _end, 1 )
    RETURN
       _result

    Attached PBIX file for reference.

     

    Best Regards,
    Gao

    Community Support Team

     

    If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

    How to get your questions answered quickly -- How to provide sample data