Sum multiple vlookup values from column

Sweedler

Board Regular
Joined
Nov 13, 2020
Messages
114
Office Version
  1. 2016
Platform
  1. Windows
  2. MacOS
Hello

Ok, so I have a sheet with a column of Article numbers and how many of each unit is sold. But there are multiple occurrences for each article number and I need to total them all up. Now I have made a separate sheet with a list of unique article numbers, but cannot figure out how to total up all of the sales with the info from the register sheet.


Help please
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
this should be able to get what you're looking for
---------------
Book1
ABCDE
1articlesoldarticletotal sold
2a81a210
3b57b344
4c44c327
5d32d232
6a12
7b98
8c89a210
9d12b344
10a54c327
11b98d232
12c66
13d32
14a12
15b54
16c94
17d98
18a51
19b37
20c34
21d58
Sheet1
Cell Formulas
RangeFormula
E2:E5E2=SUM(IF($A$2:$B$22=D2,$B$2:$B$22))
E8:E11E8=SUMIF($A$2:$A$21,D8,$B$2:$B$21)
 
Upvote 0
Solution
Excel Formula:
=SUMIF($A$1:$B$21,D2,$B$1:B21)
 
Upvote 0
@mohadin that could potentially give odd answers (albeit unlikely)
+Fluff 1.xlsm
ABCDE
1
2a1a13
3aa5
4a3
5a4
6
List
Cell Formulas
RangeFormula
E2E2=SUMIF($A$1:$B$21,D2,$B$1:B21)
 
Upvote 0
Thank you all for your input. The SUMIF formula worked beautifully
 
Upvote 0

Forum statistics

Threads
1,214,416
Messages
6,119,384
Members
448,889
Latest member
TS_711

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