Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have a list of items cost from different manufacturer & in different currency.
So i create a measure to convert each manufacturing cost with dynamic currency conversion. But i need to compare the manufacturer cost item by item to get each item's average cost.
And then base on the average manufacturer cost to set a threshold if any manufacturer cost is above or below 50% compare to the average manufacturer cost to be excluded. Then recalculate the NEW average manufacturer cost.
With the NEW average manufacturer cost, i compare it with the lowest manufacturer cost and try to get the cost saving item by item.
I create the below formula, it is able to calculate and display in a Table one by one.
But it turns out the total in the table format or in the summarize card format visual, it is not correct as the calculation will calculate againe in the total level......
Can anyone help for this case?
What i have already:
Manufacturer A cost = [CostA]
Manufacturer B cost = [CostB]
Manufacturer C cost = [CostC]
What i try to do for the measure to get the New average to excl 50% above / below :
//to exclude if the manufacturer didn't provide with cost
VAR _costcount = INT ( [Cost A] <> BLANK () )+ INT ( [Cost B] <> BLANK () )+ INT ( [Cost C] <> BLANK () )
VAR _threshold = DIVIDE ( [Cost A] + [Cost B] + [Cost C] , _costcount)
VAR _CostB = IF( [Cost B] <> BLANK(), IF(AND([Cost B]>=_lowwerthreshold , [Cost B]<=_upperthreshold), [Cost B]))
VAR _CostC = IF( [Cost C] <> BLANK(), IF(AND([Cost C]>=_lowwerthreshold , [Cost C]<=_upperthreshold), [Cost C]))
VAR _newcostcount = INT ( _CostA<> BLANK () )+ INT ( _CostB <> BLANK () )+ INT ( _CostC <> BLANK () )
Solved! Go to Solution.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
66 | |
65 | |
56 | |
39 | |
27 |
User | Count |
---|---|
85 | |
59 | |
45 | |
42 | |
39 |