Sum If - If contains Please help!

amwilber

Board Regular
Joined
May 15, 2008
Messages
162
Hello, I have a slightly tricky one someone here will easily be able to help with.

I would like to do a summation on the data below, but only when the information equals a Main/Sub equaling "S" and also a Item No containing "10".

So in the example below the sum would end up being "$1,745.44".

Please help, thanks ahead of time!

Item NoMain/SubTarget Value
100M2,327.25
110S1,745.44
120S581.81

<colgroup><col><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Assuming your data is in range A2:C4, this formula will do what you want:
Code:
=SUMPRODUCT(((B2:B4)="S")*(RIGHT(A2:A4,2)="10")*(C2:C4))
 
Upvote 0

Forum statistics

Threads
1,214,975
Messages
6,122,537
Members
449,088
Latest member
RandomExceller01

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