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!View all the Fabric Data Days sessions on demand. View schedule
This document
notes that you cannot add a numeric range slicer for values in a measure.
Is there any alternative?
The example is a short list of all the countries to be listed and it would be helpful to sort based on the converted columns (measure).
Hi @SPC_123 ,
I am not sure how you define your measure, you could try to create each measure like below and set filter on measure to "is not blank". You could refer to my sample for details.
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
In general, to use a measure in that way, you need to use the Disconnected Table Trick as this article demonstrates: https://community.powerbi.com/t5/Community-Blog/Solving-Attendance-with-the-Disconnected-Table-Trick...
Hi @SPC_123 ,
Theres is an alternative with disconnect tables.
Let's assume that you want to filter out all the information based on 3 ranges of values:
| ID | Range | Min | Max |
| 1 | 0 - 10 | 0 | 10 |
| 2 | 11- 20 | 11 | 20 |
| 3 | >20 | 20 | 999 |
Know you use the range column as your slicer and then make the following measure:
Slicer Measure = IF([Measure]>=MIN(Range_Slicer[Min]) && [Measure]<=MAX(Range_Slicer[Max]); 1 ;BLANK())
Then place this measure on the filters of the visualizaition and choose is not blank. that will filter out the visualization accordingly to your selection.
If you want to have the range slicer then create a table with values using:
Table 2 = GENERATESERIES(1;30;1)
And your measure should be:
Slicer Measure _limits = IF([Measure]>=MIN('Table 2'[Value]) && [Measure]<=MAX('Table 2'[Value]); 1 ;BLANK())
The use this measure to filter out the table again choose different from blanks.
Check PBIX file attach.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsI have a list of countries and for each a numeric value in 'local' currency. For example, the value for Breakfast in Australia is 25 (AUD). That value has been converted to USD using a Measure (Breakfast USD).
It would be helpful to provide a slicer to obtain certain results for that converted amount resulting from the Measure (e.g. only display countries where the Breakfast USD value is between 16 and 27).
Hi @SPC_123 ,
I have edit my post can you please check the last part of the post.
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCheck out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!