Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Filtering table based on measure

Hi,

 

I have a table with two columns, index and values (ranging from 1 to 100).  I want to filter the table based on user inputs, 'input value' and 'tolerance' (in percentage).  For example, if user inputs '50' as 'input value', and '10' as tolerance, then I want to filter the table with value ranging between 45 and 55.  I created 'What-if' parameters for both input value and tolerance, and created measures 'Min Value' and 'Max Value' to define the limits for filtering.  How do I use these measures to filter the data ('Display Table').  I can use a slicer to filter the table ('Value Filter'), but I want to also filter the data based on input value and tolerance.

powerBIdekstop_screenshot.jpg

 

Thank you,

Amit.

1 ACCEPTED SOLUTION
v-lionel-msft
Community Support
Community Support

Hi @Anonymous ,

 

Try to do like this.

1. create a measure.

Filter = 
IF(
    MAX(Sheet8[Index]) >= [Min] && MAX(Sheet8[Index]) <= [Max],
    1,0
)

2. Add the measure to the "Filters on this visual".

v-lionel-msft_0-1611558007761.png

 

Best regards,
Lionel Chen

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

View solution in original post

4 REPLIES 4
v-lionel-msft
Community Support
Community Support

Hi @Anonymous ,

 

Try to do like this.

1. create a measure.

Filter = 
IF(
    MAX(Sheet8[Index]) >= [Min] && MAX(Sheet8[Index]) <= [Max],
    1,0
)

2. Add the measure to the "Filters on this visual".

v-lionel-msft_0-1611558007761.png

 

Best regards,
Lionel Chen

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

Anonymous
Not applicable

Hi Lionel Chen,

 

This solution works!  I used the new filter and display table with rows having '1' as filtered value.  My next step is to figure out how to not display the filter column or make it invisible.

amitchandak
Super User
Super User

@Anonymous , You can create a new measure like below. Main thing is values /force a context to filter

 

new measure =
var _min = minx(allselected(slicer), slicer[value])
var _max = maxx(allselected(slicer), slicer[value])
return
calculate(sumx(filter(values(Table[Index]) , [measure] >=_min && [measure] <=_max),[measure]))

Anonymous
Not applicable

Thank you for the quick response!  I do not understand what the code is trying to achieve.  Here is the modified code based on your input:

 

new measure =
var _min = minx(allselected('TEST DATA'[Value]), [MinValue])
var _max = maxx(allselected('TEST DATA'[Value]), [MaxValue])
return
calculate(sumx(filter(values('TEST DATA'[Index]) , [measure] >=_min && [measure] <=_max),[measure]))
 
TEST DATA[Value] is the column with values that need to be filtered and TEST DATA[Index] is the other column. [MinValue] and [MaxValue] are measure that determine the lower and upper limit of filtering, respectively (based on the 'Input Value' and 'Tolerance').  Also, I get an error for the new measure indicating circular dependency.
 
Your help is extremely appreciated!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.