The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.
User | Count |
---|---|
80 | |
78 | |
37 | |
34 | |
31 |
User | Count |
---|---|
93 | |
81 | |
60 | |
49 | |
49 |