sum and multiply

jamiguel77

Active Member
Joined
Feb 14, 2006
Messages
378
Office Version
  1. 2016
  2. 2010
  3. 2007
Platform
  1. Windows
  2. Web
hi

i have in:

B1=5
B2=300

C1=3
C2=200

E1=1
E2=100

in the cell: A2 i need the multiplication of row 1 with row 2, and sum it, the result is: 1500+600+100 = 2200

i know... if in the third row multiply b1*b2 and then sum i get the result. but not like me the way.


see image: Pasteboard - Uploaded Image


thanks
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Try:
Book1
ABCDE
1531
22200300200100
Sheet2
Cell Formulas
RangeFormula
A2A2=SUMPRODUCT(B1:E1,B2:E2)
 
Upvote 0
What's wrong with this in A2: =B1*B2+C1*C2+E1*E2
Or the array function (CTRL+Shift+Enter): =SUM(B1:E1*B2:E2)

Now you have three options. GRIN
 
Upvote 0
Worked Both ways...

in the second case: array function (CTRL+Shift+Enter): =SUM(B1:E1*B2:E2)

Thanks
 
Upvote 0

Forum statistics

Threads
1,215,530
Messages
6,125,353
Members
449,220
Latest member
Edwin_SVRZ

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top