Forum Discussion
omdavies
5 years agoHelper I
Inclusive Page / Visual Filters
Is it possible to configure a report to filter inclusivly ? Scenario to use is: Table of Incidents Title Status Open Date Close Date I would like to create a table of incidents that ...
Anonymous
5 years agoNot applicable
Hi omdavies ,
According to my understand, when select 2021 in Close Date ,you want to display one of the open date and close date is 2021. For example, the following data meet the conditions, right?
| open date | close date |
| 2020/1/1 | 2021/1/2 |
2021/1/3 | 2020/1/4 |
| 2021/1/5 | 2021/1/6 |
If so , you need to create a single table for close date and use the following formula:
Measure =
IF (
YEAR ( MAX ( 'Worksheet'[Open Date] ) )
IN ALLSELECTED ( 'Table'[Close Year] )
|| YEAR ( MAX ( 'Worksheet'[Close Date] ) ) IN ALLSELECTED ( 'Table'[Close Year] ),
1,
0
)
Then apply the measure to filter pane ,set as "is 1". The final output looks like this:
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Eyelyn Qin