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
PowerBi_Xandar
Frequent Visitor

Filtering Table on Measure Value

Hi 

I have a dataset as shown below. 

Product Dimension 1Dimension 2 
A2520
B3219
C2126
D2625
E2023
F1927


Objectives are : 
1- To create two slicers with Dimension 1 and Dimesion 2 , on which we can enter the values (New Paramter Slicer). 
2- A Card Visual or any big visual where we get the Value of Area i.e. (Dimension 1 * Dimesion 2)
3- Then value of Area should filter the table with 5% tolerance.
For Eg: 
Dimension 1 is 20 and Dimension 2 is 21, then we have Area as 420. This Value 420 should filter the Table with 5% tolerance, that should give the values of area in Area column from  min 399 to max 441. 
 

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

Hi @PowerBi_Xandar ,

 

Because in your example, dimension 1 and dimension 2 you choose the values of different rows in the same main table. So for the dimension fields of the two slicers, they need to come from two new separate tables.

Two calculated tables:

 

D1 = DISTINCT('Table'[Dimension 1])
D2 = DISTINCT('Table'[Dimension 2])

 

The measure of area can be created like:

 

Area = SELECTEDVALUE('D1'[Dimension 1])*SELECTEDVALUE('D2'[Dimension 2])

 

At last, create a measure to filter the area column.

 

IF(ISFILTERED('D1'[Dimension 1])&&ISFILTERED('D2'[Dimension 2]),IF([Area]*1.05>=MAX('Table (2)'[Area column])&&[Area]*0.95<=MAX('Table (2)'[Area column]),1),1)

 

Put it into the visual-level filters, set up show items when the value is 1.

vstephenmsft_0-1665125371890.png

When 21 and 20 are filtered.

vstephenmsft_1-1665125381445.png

 

 

Best Regards,

Stephen Tao

 

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

2 REPLIES 2
v-stephen-msft
Community Support
Community Support

Hi @PowerBi_Xandar ,

 

Because in your example, dimension 1 and dimension 2 you choose the values of different rows in the same main table. So for the dimension fields of the two slicers, they need to come from two new separate tables.

Two calculated tables:

 

D1 = DISTINCT('Table'[Dimension 1])
D2 = DISTINCT('Table'[Dimension 2])

 

The measure of area can be created like:

 

Area = SELECTEDVALUE('D1'[Dimension 1])*SELECTEDVALUE('D2'[Dimension 2])

 

At last, create a measure to filter the area column.

 

IF(ISFILTERED('D1'[Dimension 1])&&ISFILTERED('D2'[Dimension 2]),IF([Area]*1.05>=MAX('Table (2)'[Area column])&&[Area]*0.95<=MAX('Table (2)'[Area column]),1),1)

 

Put it into the visual-level filters, set up show items when the value is 1.

vstephenmsft_0-1665125371890.png

When 21 and 20 are filtered.

vstephenmsft_1-1665125381445.png

 

 

Best Regards,

Stephen Tao

 

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

 

 

Hi Stephen, 
Thank You for the solution, it works. 

I wish power bi fix the What if slicer single value selection issue.  

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.