Forum Discussion
Spaik
2 years agoRegular Visitor
segmented filter for customers
I hope this message finds you well. We have encountered a challenge in Power BI that we have not been able to resolve on our own. Specifically, we are trying to filter and list customers whose "Metr...
- 2 years ago
You can create another column and put it in filter pane and select value as 1
-
Create a Calculated Column for the 40% Threshold:
- First, create a calculated column in your table to determine if the “Metragem” is above 40% of the reference value.
AboveThreshold = IF( 'YourTable'[Metragem] > 0.4 * 'YourTable'[ReferenceValue], 1, 0 )
- First, create a calculated column in your table to determine if the “Metragem” is above 40% of the reference value.
-
Kaviraj11
2 years agoSolution Sage
You can create another column and put it in filter pane and select value as 1
-
Create a Calculated Column for the 40% Threshold:
- First, create a calculated column in your table to determine if the “Metragem” is above 40% of the reference value.
AboveThreshold = IF( 'YourTable'[Metragem] > 0.4 * 'YourTable'[ReferenceValue], 1, 0 )
- First, create a calculated column in your table to determine if the “Metragem” is above 40% of the reference value.