Hi Team,
Could someone please assist me with the following scenario.
We have received a total of 700 orders, and conducted random testing on 171 of them. Within these tested orders, we found defects in 38. Since an order can have multiple defects, we used the maxover () function to assign ratings of 1, 2, or 3. To calculate the gross defect rate, we applied the following rule, the results are as shown in the screenshot.
GDR = distinct_countIf(ordernumber,status=“No” AND rating=2 OR rating=3)
So far, the results are accurate. We now need to calculate the defect rate percentage for each category based on the number of orders audited, which is 171. For example, there are 2 defects in category A, so the defect rate would be 2/171 , resulting in approximately 1.17%. This was calculated using the formula: GDR (Gross Defect Rate) divided by the number of orders audited. However, I am not obtaining the correct results. The total defect percentage appears to be correct. However, I am unsure where I might have made a mistake. Can someone assist me?
Thanks!