I need to sum a range if a string is contained within an array of values.
<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.
A | B | C | |
1 | Critieria | Range | Sum Range |
2 | Product1 | Half Product1 | 40 |
3 | Product2 | Product1 | 250 |
4 | Product3 | Some Product2 | 34 |
5 | Product3 | 42 | |
6 | All Product3 | 50 |
<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.