return yes or no

Patcheen

Active Member
Joined
Sep 28, 2015
Messages
388
Office Version
  1. 365
Platform
  1. Windows
im trying to get yes or no if a certain cell contains the words own goal ?

heres my prob in E608 ih have the words Own Goal James Russell

this is what is use to use =IF(E608="Own goal","Yes","No") this would return yes if only it contained Own goal

but now that ive added the own goal scorer to it which is now

own goal - James Russell

so now how can i return an Yes if E608 conatins own goal and ignore james russell?

i tried this =IF(E608="*Own goal*","Yes","No") but it returns No
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
How about
=IF(ISERROR(FIND("own goal",E608)),"no","yes")
 
Upvote 0
try
Code:
=IF(LEFT(E608,8)="own goal","Yes","No")
 
Upvote 0
Try
=IF(ISNUMBER(SEARCH("Own goal",E608)),"yes","no")
 
Upvote 0
Thank you Scott T it worked and thank you to all of you for your help also
 
Upvote 0
it returns an - No
Which formula?

Note that FIND is case sensitive. Search that AHOYNC used is not case sensitive.
also note my formula assumes own goal will always be at the start of the string.




You're welcome.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,473
Messages
6,125,020
Members
449,203
Latest member
tungnmqn90

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