Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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.
@Nelson-Cheng ,
try like
Cost Save new = sumx(Values(Table[Item]),[Cost Save])
@Nelson-Cheng ,
try like
Cost Save new = sumx(Values(Table[Item]),[Cost Save])
User | Count |
---|---|
117 | |
74 | |
62 | |
50 | |
46 |
User | Count |
---|---|
174 | |
125 | |
60 | |
60 | |
57 |