
I would like to have the result by 1 formulas in the cell next to “TOTAL”
Right now I have to:
SUM(QTY1, QYT2, QTY3)*Priceon each rowSUM
Is there anyway to get the final result with 1 step something like SUMPRODUCT(PRICE, SUM(QTY1,QTY2,QTY3))?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You may decompose the formula into
or use
directly (
PRICE,QTY1, … are the names of the regions shown in your example) .