Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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 "Metragem" (area measurement) is above 40% of a given reference value. The goal is to display a list of these customers within a visual, but we haven't succeeded so far.
We attempted to use DAX formulas, such as COUNTROWS, ALLSELECTED, and CONCATENATEX, but we are still struggling to achieve the desired outcome. We need the report to automatically identify and list these customers whenever the filters are applied.
Could you please assist us in resolving this issue? Any guidance or suggestions would be greatly appreciated.
Thank you in advance for your support.
Best regards,
Solved! Go to Solution.
You can create another column and put it in filter pane and select value as 1
Create a Calculated Column for the 40% Threshold:
AboveThreshold =
IF(
'YourTable'[Metragem] > 0.4 * 'YourTable'[ReferenceValue],
1,
0
)
Proud to be a Super User! | |
You can create another column and put it in filter pane and select value as 1
Create a Calculated Column for the 40% Threshold:
AboveThreshold =
IF(
'YourTable'[Metragem] > 0.4 * 'YourTable'[ReferenceValue],
1,
0
)
Proud to be a Super User! | |
Hi,
Here’s a revised approach to clarify:
Create a Measure for the Reference Value:
ReferenceValue = SUM('Table'[Metragem]) / COUNTROWS('Table')
Create a Measure for the 40% Threshold:
ThresholdValue = [ReferenceValue] * 0.4
Create a Measure to List Customers Above the Threshold: This measure directly lists the customers whose “Metragem” is above the threshold:
CustomersAboveThreshold =
CONCATENATEX(
FILTER(
VALUES('Table'[CustomerName]),
CALCULATE(SUM('Table'[Metragem])) > [ThresholdValue]
),
'Table'[CustomerName],
", "
)
Proud to be a Super User! | |
that was really good! however, I received feedback as follows with the first two measurements.
but, It brings all customers on the same field.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
81 | |
52 | |
39 | |
35 |
User | Count |
---|---|
95 | |
79 | |
52 | |
49 | |
47 |