Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hello,
I have the following 2 tables and I created a Slicer with the right table:
In this filter,
I need to create Table dashboard in where, if Filter=P1, only shows incidents with Priority = 1, but if filter = P1-P2 the table shows all incidents P1 or P2...
Could you give me a clue ? Thanks in advance.
Kind regards,
Jorge.
Solved! Go to Solution.
Hi @Anonymous
You may create a measure like below and use it in visual level filter and set it =1.
Measure =
IF (
SELECTEDVALUE ( 'Filter'[Order] ) = 1
&& MAX ( Incidents[Priority] ) = 1,
1,
IF (
SELECTEDVALUE ( 'Filter'[Order] ) = 2
&& MAX ( Incidents[Priority] ) <= 2,
1,
IF (
SELECTEDVALUE ( 'Filter'[Order] ) = 3
&& MAX ( Incidents[Priority] ) <= 3,
1,
IF (
SELECTEDVALUE ( 'Filter'[Order] ) = 4
&& MAX ( Incidents[Priority] ) <= 4,
1
)
)
)
)
Regards,
Hi @Anonymous
You may create a measure like below and use it in visual level filter and set it =1.
Measure =
IF (
SELECTEDVALUE ( 'Filter'[Order] ) = 1
&& MAX ( Incidents[Priority] ) = 1,
1,
IF (
SELECTEDVALUE ( 'Filter'[Order] ) = 2
&& MAX ( Incidents[Priority] ) <= 2,
1,
IF (
SELECTEDVALUE ( 'Filter'[Order] ) = 3
&& MAX ( Incidents[Priority] ) <= 3,
1,
IF (
SELECTEDVALUE ( 'Filter'[Order] ) = 4
&& MAX ( Incidents[Priority] ) <= 4,
1
)
)
)
)
Regards,
It looks like somebody was trying to accomplish something similar here: https://community.powerbi.com/t5/Desktop/Is-there-any-way-to-get-a-slicer-where-applied-value-is-les...
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 75 | |
| 36 | |
| 31 | |
| 29 | |
| 26 |