Forum Discussion
KOLD1313
1 year agoNew Member
Need to calculate rejection rate
I have to tabs on Power Query from excel data. One of the tab had the monthly production of 5 items. The other tab had the rejects per those 5 items I neeed to create a control chart to be able to di...
- Anonymous1 year ago
Hi KOLD1313 ,
Here is my sample data:In Power Query, merge these two tables as a new one:
Expand the column:
Add a custom column:
if [rejects] = null then 0 else ([rejects] / [quantity])And the final output is as below:
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
1 year agoNot applicable
Hi KOLD1313 ,
Here is my sample data:
In Power Query, merge these two tables as a new one:
Expand the column:
Add a custom column:
if [rejects] = null then 0 else ([rejects] / [quantity])
And the final output is as below:
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
KOLD1313
1 year agoNew Member
Thank you!