Forum Discussion
Anonymous
8 years agoNot applicable
GROUP BY logic
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 und...
- 8 years ago
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])
v-jiascu-msft
8 years agoMicrosoft Employee
Hi Anonymous,
Can you mark the proper answer as a solution please?
Best Regards,
Dale