Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
Consider the sample data below.
FG - Finished Good
RM - Raw Material
I want to calculate the yield value for a finished good (it's already calculated in the table above for understanding purpose)
The logic for calculating it is - FG Qty / (RM Qty with maximum RM Cost)
Eg: For FG1, raw material with max cost is RM3. So its yield value will be 1000/300.
I'm facing difficulty to write a DAX measure for yield.
Please provide suggestions if any.
Solved! Go to Solution.
Perhaps something like:
Yield = VAR maxRMCost = MAX(Yields[RM Cost]) VAR tmpTable = FILTER(Yields,[RM Cost]=maxRMCost) RETURN SUMX(tmpTable,[FG Qty]) / SUMX(tmpTable,[RM Qty])
Hi @Anonymous,
Can you mark the proper answer as a solution please?
Best Regards,
Dale
Perhaps something like:
Yield = VAR maxRMCost = MAX(Yields[RM Cost]) VAR tmpTable = FILTER(Yields,[RM Cost]=maxRMCost) RETURN SUMX(tmpTable,[FG Qty]) / SUMX(tmpTable,[RM Qty])
@Anonymous
Another way.. to have a column like
Yield =
VAR maxCost =
CALCULATE ( MAX ( Table1[RM Cost] ), ALLEXCEPT ( Table1, Table1[Batch] ) )
RETURN
Table1[FG Qty]
/ CALCULATE (
SUM ( [RM Qty] ),
FILTER ( ALLEXCEPT ( Table1, Table1[Batch] ), Table1[RM Cost] = maxCost )
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |