Forum Discussion
Eileen Skidgel
Jul 26, 2018Copper Contributor
SUM formula help needed with multiple criteria
I need to multiply the cost per piece & the number of pieces being ordered. I need the formula to continue down the entire column. The formula I'm using for an example is =SUM(J111*H111) I need tha...
- Jul 26, 2018
Eileen,
- enter formula in the first cell of your range, let say =J1*H1 in cell K1;
- select your range in column K, let say cells from K1 to K200;
- press Ctrl+D
It's not necessary to empty your range before
SergeiBaklan
Jul 26, 2018Diamond Contributor
Hi Eileen,
You sum nothing, just multiply the price on number of pieces, thus formula like
=J103*H103
is enough
And your formula for 110 is wrong, it looks like
=SUM(J110,H110)
it shall be * instead of comma. Even better
=J110*H110