This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hi,
I am trying to filter a visual based on two fields but at the moment once the first one is applied the 2nd is restricted.
I want the table to list values when either SOS = 22/23 OR PC = 22/23
At the moment once a select the first then the second is select is reduced.
These are Dax calender tables.
Any help is much appricated.
Thank You
Solved! Go to Solution.
Here is one way. Create duplicates of the tables and leave them unrelated in the model. Use the fields of these unrelated tables as the slicers.
Then create the equivalent measure to use as a filter for the visual, setting the value to 1:
Filter Table =
SWITCH (
TRUE (),
AND (
ISFILTERED ( PC ),
MAX ( 'Table'[PC Format] ) IN VALUES ( PC[PC Format] )
), 1,
AND (
ISFILTERED ( SOS ),
MAX ( 'Table'[SOS Format] ) IN VALUES ( SOS[SOS Format] )
), 1,
AND ( NOT ( ISFILTERED ( PC ) ), NOT ( ISFILTERED ( SOS ) ) ), 1
)
I've attached a sample PBIX file
Proud to be a Super User!
Paul on Linkedin.
Can you try again? I actually edited the post and you may have tried while I was editing it
EDIT: I just tried the download and it works for me
Proud to be a Super User!
Paul on Linkedin.
Here is one way. Create duplicates of the tables and leave them unrelated in the model. Use the fields of these unrelated tables as the slicers.
Then create the equivalent measure to use as a filter for the visual, setting the value to 1:
Filter Table =
SWITCH (
TRUE (),
AND (
ISFILTERED ( PC ),
MAX ( 'Table'[PC Format] ) IN VALUES ( PC[PC Format] )
), 1,
AND (
ISFILTERED ( SOS ),
MAX ( 'Table'[SOS Format] ) IN VALUES ( SOS[SOS Format] )
), 1,
AND ( NOT ( ISFILTERED ( PC ) ), NOT ( ISFILTERED ( SOS ) ) ), 1
)
I've attached a sample PBIX file
Proud to be a Super User!
Paul on Linkedin.
Thank you,
I tried to downloand the file but that doesn't seem to work, are you able to reupload it?
I'm unable to call the date table as they are Dax tables
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 25 | |
| 25 | |
| 22 | |
| 14 |
| User | Count |
|---|---|
| 61 | |
| 49 | |
| 25 | |
| 20 | |
| 20 |