I work in a warehouse where we take components and put them together to make a finished good product.
We have these values for each component:
Quantity Required
Quantity Used
Variance (Quantity Used- Quantity Required)
Overage ((Variance/Quantity Required)) * 100%
So basically these values tell me how much we needed, how much we used, and how much we wasted.
At the bottom of the report that shows all these values, I take the sum of Quantity Required, Quantity Used, and Variance. I also take the average of Quantity Required and Quantity Used and subtract these averages to find the average Variance.
The problem: Sometimes the Quantity Required value for a component is zero. How should I adjust my summations/averages accordingly?
What I've tried: I've simply made the summations/averages ignore the rows where the Quantity Required is zero, but I think this is wrong. If my boss asks me "What is the average overage for Item X for this year?" my method will ignore the rows with zeros in the Quantity Required column, thus ignoring an amount in Quantity Used that is technically still an amount to consider.
Sample Data of 1 item being used across multiple jobs:
Quantity Required Quantity Used Variance Overage
Job A 1000 1100 100 10%
Job B 900 800 -100 -11.1%
Job C 0 300 300 (N/A)
Summations: 1900 1900 0 0%
Averages: 950 950 0 0%
You should definitely not ignore the zero rows.
The simplest thing to do would be just to sum the Quantity Required and the Quantity Used , then average by dividing by the number of rows in the report.
You can sum the Variance the same way. Summing the Overage makes no sense - mark it N/A.
You should not average the Variance and the Overage by using the row values Compute those directly from the Summations of the two columns.