IF formula if a cell contains specific letter

janema

Board Regular
Joined
Nov 28, 2022
Messages
117
Office Version
  1. 365
  2. 2021
  3. 2019
  4. 2011
  5. 2010
Platform
  1. Windows
  2. Mobile
I am struggling with this formula to return a specific value if the cell contains the letter "s"

1710273822839.png
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Looks like it is working correctly to me.

Your formula reads:
If F4 = "S", then return "Sales Plan", otherwise return "STI".
Since F4 = "Band 4 Target 15%", your formula is correctly returning "STI".
 
Upvote 0
Looks like it is working correctly to me.

Your formula reads:
If F4 = "S", then return "Sales Plan", otherwise return "STI".
Since F4 = "Band 4 Target 15%", your formula is correctly returning "STI".
Right, but I need it to return "Sales Plan" if there is a "S" in the source. Example: "Band 3S Target 10%" should return "Sales Plan" but it is also returning "STI"
My formula isn't working 😟
 
Upvote 0
Right, but I need it to return "Sales Plan" if there is a "S" in the source. Example: "Band 3S Target 10%" should return "Sales Plan" but it is also returning "STI"
My formula isn't working 😟
OK, you didn't show any in your example that contain the letter "S". Your formula only looks for it to be EXACTLY equal to "S".
If you want to check for the letter, try:
Excel Formula:
=IF(ISNUMBER(FIND("S",F4)),"Sales Plan","STI")

Note that FIND is Case Sensitive (only looking for capital "S").
If you want to search for either "S" or "s", the change the word "FIND" in that formula to "SEARCH".
 
Upvote 1
Solution
OK, you didn't show any in your example that contain the letter "S". Your formula only looks for it to be EXACTLY equal to "S".
If you want to check for the letter, try:
Excel Formula:
=IF(ISNUMBER(FIND("S",F4)),"Sales Plan","STI")

Note that FIND is Case Sensitive (only looking for capital "S").
If you want to search for either "S" or "s", the change the word "FIND" in that formula to "SEARCH".

That worked perfectly! Thank you so much! :love:
 
Upvote 0
You are welcome.
Glad I was able to help!
 
Upvote 0

Forum statistics

Threads
1,215,096
Messages
6,123,074
Members
449,093
Latest member
ripvw

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