Sumif using a list of criteria

bob2020

New Member
Joined
Oct 30, 2019
Messages
4
I was wondering if there was a formula that I could use to sum a data file using the below columns as the lookup, I would also like to use another criteria in addition to this.

I.e If any of the numbers in column A appears in raw data file, sum the respective number in another column


[TABLE="width: 500"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[/TR]
[TR]
[TD]56[/TD]
[TD]16[/TD]
[TD]20[/TD]
[TD]98[/TD]
[TD]87[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]2[/TD]
[TD]7[/TD]
[TD]9[/TD]
[TD]65[/TD]
[/TR]
[TR]
[TD]695[/TD]
[TD]546[/TD]
[TD]110[/TD]
[TD]848[/TD]
[TD]464[/TD]
[/TR]
[TR]
[TD][/TD]
[TD]854[/TD]
[TD]205[/TD]
[TD]331[/TD]
[TD]550[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]484[/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]

[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]

Thanks in advance
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
[FONT=&quot]The columns B to E can be ignored as I don't think it's actually relevant to the formula, the actual formula I was thinking of was:

=SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)

However I would like the criteria1 to be replaced with a column of data.

Hope that makes more sense[/FONT]
 
Upvote 0
I was expecting a more verbose description of the problem, possibly with expected output.
 
Upvote 0
I was expecting a more verbose description of the problem, possibly with expected output.


Column A has a number of references. I want the sumif formula to search through a large data dump and sum only the values that corresponds to the references in that list.

e.g. So for example, I want to look up references in column A in the data dump and sum the corresponding figures

Data dump

[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]References[/TD]
[TD]Amount[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]506[/TD]
[TD]50[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]4964[/TD]
[TD]80[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]6416[/TD]
[TD]42[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]56[/TD]
[TD]10[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]25[/TD]
[TD]8[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]56[/TD]
[TD]5[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]


The result would be 15 (Cell B5 + B7)

Hope that makes it clearer

Thanks
 
Upvote 0
As you said just normal SUMIFS should do it

in Sheet1!F2
=SUMIFS('Data dump'!B$2:B$7,'Data dump'!!A$2:A$7,A2)
and copy down
 
Upvote 0
How about


Book1
ABCDEI
1ReferencesAmountRef
2506506556
3496480506
4641642
55610
6258
7565
8
work 2
Cell Formulas
RangeFormula
D2{=SUM(SUMIF(A2:A7,I2:I3,B2:B7))}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0
Thank you both for your response.

I tried your formula but unfortunately it didn't work with my data. I played around with it a bit more and using =SUMPRODUCT(SUMIFS worked for me
 
Upvote 0
Glad you got it working & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,224,818
Messages
6,181,151
Members
453,021
Latest member
Justyna P

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