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
I have the next data:
| Value | Quality | Type |
| 2 | Bad | L |
| 1 | Normal | L |
| 2 | Bad | L |
| 10 | Normal | INT |
| 5 | Bad | INT |
| 3 | Normal | INT |
I want to have a single slicer with values Bad, Normal and INT
Then a card shall display:
When Bad is selected in the slicer display: 9
When Normal: 14
When INT: 18
Is this possible/doable?
Solved! Go to Solution.
Hi @Anonymous ,
Create a slicer table then create a measure like below:
Measure = CALCULATE(SUM('Table'[Value]),FILTER('Table','Table'[Quality] in VALUES(slicer[slicer])||'Table'[Type] in VALUES(slicer[slicer])))
Best Regards,
Jay
Hi @Anonymous ,
Create a slicer table then create a measure like below:
Measure = CALCULATE(SUM('Table'[Value]),FILTER('Table','Table'[Quality] in VALUES(slicer[slicer])||'Table'[Type] in VALUES(slicer[slicer])))
Best Regards,
Jay
Hi @Anonymous ,
see my pbi file.
https://1drv.ms/u/s!Aj45jbu0mDVJizSH2WjPI3eHT2BR?e=E4cYBm
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 65 | |
| 44 | |
| 40 | |
| 29 | |
| 19 |
| User | Count |
|---|---|
| 200 | |
| 130 | |
| 102 | |
| 72 | |
| 55 |