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"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".
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".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
=IF(ISNUMBER(FIND("S",F4)),"Sales Plan","STI")
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".