Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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.
Solved! Go to Solution.
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
_resultFilter 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
_resultFilter 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
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
_resultFilter 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
_resultFilter 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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 134 | |
| 96 | |
| 78 | |
| 67 | |
| 65 |