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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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...
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.