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 nowThe Fabric community is upgrading! Read all of the details including the timeline and what you can expect. Learn more
I have a simple measure, returning % value, ( please see attached) , how can I filter the measure value using slicer, when I will select 0-25% then only the value within this range will appear others are filter out, similar for 26-50% and so on.measure
slicer
table visualization
Solved! Go to Solution.
Hi @arif_tsrm
Please refer to the linked tutorial video.
Your ranges are the "names".
https://www.youtube.com/watch?v=AHiCE1N0XHE
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Hi @arif_tsrm ,
Here are the steps you can follow:
1. Create measure.
Flag =
SWITCH(
TRUE(),
MAX('Slicer table'[Score%])= "0-25%" && [Score%ForBottomTbl] >=0&&[Score%ForBottomTbl]<=0.25,1,
MAX('Slicer table'[Score%])= "25-50%" && [Score%ForBottomTbl] >=0.26&&[Score%ForBottomTbl]<=0.5,1,
MAX('Slicer table'[Score%])= "51-75%" && [Score%ForBottomTbl] >=0.51&&[Score%ForBottomTbl]<=0.75,1,
MAX('Slicer table'[Score%])= "76 to up" && [Score%ForBottomTbl] >=0.76,1,0)
2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @arif_tsrm ,
Here are the steps you can follow:
1. Create measure.
Flag =
SWITCH(
TRUE(),
MAX('Slicer table'[Score%])= "0-25%" && [Score%ForBottomTbl] >=0&&[Score%ForBottomTbl]<=0.25,1,
MAX('Slicer table'[Score%])= "25-50%" && [Score%ForBottomTbl] >=0.26&&[Score%ForBottomTbl]<=0.5,1,
MAX('Slicer table'[Score%])= "51-75%" && [Score%ForBottomTbl] >=0.51&&[Score%ForBottomTbl]<=0.75,1,
MAX('Slicer table'[Score%])= "76 to up" && [Score%ForBottomTbl] >=0.76,1,0)
2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @arif_tsrm
Please refer to the linked tutorial video.
Your ranges are the "names".
https://www.youtube.com/watch?v=AHiCE1N0XHE
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
| User | Count |
|---|---|
| 24 | |
| 22 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 32 | |
| 26 | |
| 23 | |
| 20 | |
| 20 |