Forum Discussion

TWorku's avatar
TWorku
Frequent Visitor
4 years ago

How to use Measure as Between Slicer

Hello Community. 

 

I need your help on this. I have a measure to gives a value 0 to 100. I would like to have a between slicer for that measure. and I want to have a score card to display count of Individual. The Score card and the measure to count is not a problem. I am havin hard time changing the measure to slicer. 

 

 

Any help? please 

7 Replies

  • amirabedhiafi's avatar
    amirabedhiafi
    Impactful Individual

    What does the measure calculate ?

    Is it possible to transform it to a calculated column ?

    • TWorku's avatar
      TWorku
      Frequent Visitor

      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

       

       



       



      • v-janeyg-msft's avatar
        v-janeyg-msft
        Community Support

        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