G
Guest
I am new to excel and to multiply three colums together then add them
together for a final answer in a box
together for a final answer in a box
ntobias said:I am new to excel and to multiply three colums together then add them
together for a final answer in a box
Assume data in cols A to C, from row1 down.. to multiply three colums together
[assume you mean the same three colums].. to add them together ..
Max said:ntobias said:I am new to excel and to multiply three colums together then add them
together for a final answer in a box
As-is above, I'm not really sure what you want to do <g>
Let's try to break things down .. if we want:
Assume data in cols A to C, from row1 down.. to multiply three colums together
Then place in say, D1: =A1*B1*C1
Copy D1 down
[assume you mean the same three colums].. to add them together ..
Place in say, E1: =SUM(A1:C1)
Copy E1 down
---
.. to multiply three colums together then add them together ..
Assume data in cols A to C, from row1 down
Then place in say, D1: =A1*B1*C1
Copy D1 down
JE McGimpsey said:One way:
=SUMPRODUCT(A1:A100,B1:B100,C1:C100)