Forum Discussion
Production Yield Calculation
- 9 years ago
Sure thing.
Please give this a try and let me know how you get on, :)
Hi Phil,
Can you attached the sample data? Thanks, as you can tell, I'm a newbie to Power BI and dummy to DAX. Will like to explore the calculated table in Power BI.
Thanks
Sure thing.
Please give this a try and let me know how you get on, :)
- vincentakatoh9 years agoHelper IV
Hi Phil,
Super. What a clean and easy solution. Love the awesome response in this forum. Power Support, Power BI!
- vincentakatoh9 years agoHelper IV
phil,
Help! If the original data has a column "testdate", how can I add the "date" colum to the new Table "Yield Roll Table".
Tired to add "data[testdate]" in the DAX formula, but it messes up the "Yield" Calculation, giving a incorrect Yield results.
Yield Roll Table =
SUMMARIZECOLUMNS(
data[Area],
data[Line],
data[station],
data[testdate],
"Count of Pass",COUNTROWS(FILTer('data',[test results]="P")),
"Count of Fail",COUNTROWS(FILTer('data',[test results]="F")),
"Yield",DIVIDE([CountPass],[CountPass]+[CountFail],1)
)