I have a complete data set that is designed for 4 different groups. One of the values is average time, the other is quantity. For Total, I have to multiply them and then divide by the total number. I am currently using:
=SUM(D32*D2,D94*D64,D156*D126,D218*D188)/SUM(D32,D94,D156,D218)
I would rather use SumProduct, if possible, to make it more readable. I've tried:
=SUMPRODUCT((D2,D64,D126,D188),(D32,D94,D156,D218))/SUM(D32,94,D156,D218)
But, as you can tell from my post here, this did not work. Is there a way to make SumProduct the way I want?
Craig
source share