Forum Discussion
Numeric range slicer and Measures
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).
6 Replies
- Greg_DecklerCommunity Champion
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/ba-p/279563
- daxCommunity Support
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 ZhiIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- amitchandakSuper User
The information you have provided is not making the problem clear to me. Can you please explain with an example.
- SPC_123Frequent Visitor
I 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).
- MFelixSuper User
- MFelixSuper User
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.