Muliply values with vlookup?

Pojzon

New Member
Joined
May 19, 2017
Messages
19
Help tableAmountResult table12345678
Name15Name113453
Name210Name22342
Name315Name3333
Name420Name44511
Multiplied sum501006050125606040

<tbody>
</tbody>

Hello,
I need to multiply values from help table with result table. In final file there would be around 50 names. I tried using vlookup, but with no luck. Is there any simple way that I could automate this? Thank you for any help.
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
Welcome to the forum.

Summing arrays multiplied together is an easier way to extract the conditional values.

Copy E6 across.

ABCDEFGHIJKL
1Help tableAmountResult table12345678
2Name15Name113453
3Name210Name22342
4Name315Name3333
5Name420Name44511
6Multiplied sum501006050125606040

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet3

Worksheet Formulas
CellFormula
E6=SUMPRODUCT($B$2:$B$5*E2:E5)

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>


<strike></strike>
 
Last edited:
Upvote 0
Thank you very much for answer, but I've got another question. I believe this method will only work as long as order of names in help table is always the same as order in result table. Is there anyway to make it work with different order?
 
Upvote 0
Yes, there is. Simply include another array.

This goes in E6.
Code:
=SUMPRODUCT(($D$2:$D$5=$A$2:$A$5)*$B$2:$B$5*E2:E5)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,079
Messages
6,128,690
Members
449,464
Latest member
againofsoul

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