Formula help please

Drock74

New Member
Joined
Jan 30, 2023
Messages
1
Office Version
  1. 2019
Platform
  1. Windows
I have a sheet containing currency in cell E10, quantity F10 and a sum in M10 (=F10*E10) In cell K10 I also use multiple words that would equal a dollar or percent discount. I would like to write a formula that would apply the discount to cell M10 if cell k10 contains one of the 4 words. example of words are Welcome21, Welcome22 and Welcome23 all equal $10 off the sum in cell M10 and Thanks10 equals 10% off the sum in cell M10
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Book3
EFGHIJKLMN
2CurrencyQuantityWordsSumNet of Discount
3$110.2514Welcome23$1,543.50$1,533.50
4$110.2514$1,543.50$1,543.50
5$110.2514Thanks10$1,543.50$1,389.15
6
Sheet1
Cell Formulas
RangeFormula
M3:M5M3=F3*E3
N3:N4N3=IF(ISNUMBER(FIND("Welcome",L3,1)),M3-10, IF(ISNUMBER(FIND("Thanks",L3,1)),M3*0.1,M3))
N5N5=IF(ISNUMBER(FIND("Welcome",L5,1)),M5-10, IF(ISNUMBER(FIND("Thanks",L5,1)),M5*(1-0.1),M5))
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,716
Members
448,985
Latest member
chocbudda

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