Forum Discussion

6 Replies

  • dax's avatar
    dax
    Community 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 Zhi

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

     

  • The information you have provided is not making the problem clear to me. Can you please explain with an example.

    • SPC_123's avatar
      SPC_123
      Frequent 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).

      • MFelix's avatar
        MFelix
        Super User

        Hi SPC_123 ,

         

        I have edit my post can you please check the last part of the post.

  • 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.