SUMIF, looking for string values within an array

TomH01

New Member
Joined
Feb 5, 2014
Messages
10
I need to sum a range if a string is contained within an array of values.

A
B
C
1
Critieria
Range
Sum Range
2
Product1Half Product140
3
Product2Product1250
4
Product3Some Product234
5
Product342
6
All Product350

<tbody>
</tbody>

In this instance I'd want to sum the whole range, as the critiera is contained within each of the cells. I've tried using SUMIFS but that only works on exact matching the criteria to the range.

Any help would be much appreciated.
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
You can use wildcards (* and ?) in SUMIF(S):


Excel 2010
ABCD
1CriteriaRangeSum Range
2Product1Half Product140416
3Product2Product1250
4Product3Some Product234
5Product342
6All Product350
Sheet1
Cell Formulas
RangeFormula
D2=SUMPRODUCT(SUMIF(B2:B6,"*"&A2:A4&"*",C2:C6))
 
Upvote 0
You can use wildcards (* and ?) in SUMIF(S):

Excel 2010
ABCD
1CriteriaRangeSum Range
2Product1Half Product140416
3Product2Product1250
4Product3Some Product234
5Product342
6All Product350

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

Worksheet Formulas
CellFormula
D2=SUMPRODUCT(SUMIF(B2:B6,"*"&A2:A4&"*",C2:C6))

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

<tbody>
</tbody>

That's great, thanks for that. I'd been trying the wild cards but wasn't getting the syntax quite right.
 
Upvote 0

Forum statistics

Threads
1,215,064
Messages
6,122,941
Members
449,094
Latest member
teemeren

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