Forum Discussion
How to use Measure as Between Slicer
I have 3 Measures that uses WhatIf. I am required to have the total of those 3 Measures to be filtered by between Slicer.
We can not transform it to calculated column since the measure is the total of those 3 whatIF measure. They want to play around with value of those Whatif measures.
Selected different value from the WhatIF Slicers
Because of this, The Total forcast change depending on the selection.
What they want is to see how many IDs fall in to catagories by changing the "Total Forcast" range. Like the following example
Hi, TWorku
You can try:
measure =
COUNTROWS (
FILTER (
SUMMARIZE (
ALL ( TABLE ),
[Id],
"F1", [Forecast 1],
"F2", [Forecast 2],
"F3", [Forecast 3],
"Total", [Total Forecast]
),
[Total] >= MIN ( table2[Total Forecast] )
&& [Total] <= MAX ( table2[Total Forecast] )
)
)
Did I answer your question? Please mark my reply as solution. Thank you very much.
If not, please feel free to ask me.
Best Regards,
Community Support Team _ Janey
- TWorku4 years agoFrequent Visitor
I think you did not understand what I am lookin for. My goal is to find a way to use a measure as a Between Slicer.
My table has ID numbers. Based on activity, each ID Numbers, get a value.
Activity 1 has a default of 10Activity 2 has a default of 30
Activity 3 has a default of 60
I Created 3 what if measures. because what if the user want to change the default value for each activities?
Forcast 1 - it is for Activity 1 and the whatif range is from 5 to 15. Default = 10
Forcast 2 - it is for Activity 2 and the whatif range is from 25 to 35. Default = 30
Forcast 3 - it is for Activity 3 and the whatif range is from 45 to 60. Default = 60
I have Total Forcast Measure. it is a total of all the 3 forcasts.So what I am requested is, to use Total Forcast Measure as a between slicer. user can use the default value or can select any of the option from the forcast slicers. the total also change as the slicers selection changes.
Thank you for taking time to help on this challenge- v-janeyg-msft4 years agoCommunity Support
Hi, TWorku
If so, I can only say that your idea is good, but there is no way to implement it at the moment.
Maybe you can try to create a new what if function, including the maximum and minimum values of your total measure, and then use it as the slicer, and then write a measure, so that the range selected in the slicer corresponds to the range of your total measure, maybe your needs can be achieved.
Best Regards,
Community Support Team _ Janey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.- TWorku4 years agoFrequent Visitor
Thank you