Formula to multiply two columns, if a 3rd column contains a certain word?

Earthpegasus

New Member
Joined
Sep 28, 2018
Messages
2
I've looked around a lot for this but I can't seem to find anything that matches my exact situation. I'm working with stock exercises, and I want to sum up the amount of stock that was exercised. I have 3 columns: A- price per share, B- quantity exercised, and C- date exercised (which has entries like "november 2017", so I don't have an exact match for "2017").

I'm trying to say "If column C contains "2017", multiply column B by column A." So the formula would start at cell C10, check if it contains "2017," and if it does multiply cell B11*A11. Then do the same for cell C12, etc, all the way to the end. So I'm looking for some combination of sumif, productif, etc, but I just can't quite figure it out. Like a productif formula to give "product(A10:A100,B10:B100) if column C contains the partial text "2017"".

Can anyone help me figure this out? I feel like I'm so close but I just can't get there.

Thank you in advance.
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Welcome to the forum.

Try:

=SUMPRODUCT(A1:A100,B1:B100,--ISNUMBER(FIND(2017,C1:C100)))


HOWEVER: this only works if you have text values in column C. If you have actual date values, it won't work, but is easy to adapt. If you have a mix, it'll be much tougher
 
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,120
Members
451,399
Latest member
alchavar

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