find/search

osaben

Board Regular
Joined
Mar 17, 2010
Messages
55
Looking to return an answer when text in a different cell contains the same text. I as using the below formula, but it does not seem to be working.

=IF(ISNUMBER(FIND(A62,Licenses)),"YES","NO")


NOTE,the actual text in A62 may not exactly equal "Licenses", but instead may contain that text along with other words as well.

I am using FIND because it do not want the search to be case sensitive.

What seems to be wrong with my formula?

Thanks in advance you your help.
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Looking to return an answer when text in a different cell contains the same text. I as using the below formula, but it does not seem to be working.

=IF(ISNUMBER(FIND(A62,Licenses)),"YES","NO")


What seems to be wrong with my formula?
Use this it's working for lowercase and caps for me
=IF((SEARCH("Licenses",A62)>0),"YES","NO")
also, from your formula
you didn't have quotes around licenses and your arguements A62,"licenses" should be in opposite spots


=IF(ISNUMBER(FIND("Licenses",A62)),"YES","NO")
this one is case sensitive
 
Last edited:
Upvote 0
You need double quotes around the word Licenses.

Rich (BB code):
=IF(ISNUMBER(FIND(A62,"Licenses")),"YES","NO")
 
Upvote 0
Twollaston.

Thanks for your suggestion. That worked perfectly!
 
Last edited:
Upvote 0
All:

=IF(ISNUMBER(FIND("Licenses",A62)),"YES","NO") works perfectly.

HOWEVER, sometimes. A62 has NO text in it at all -- if that is the case, I do not want anything to be returned. Is this possible?

Thanks again.
 
Upvote 0
All:

=IF(ISNUMBER(FIND("Licenses",A62)),"YES","NO") works perfectly.

HOWEVER, sometimes. A62 has NO text in it at all -- if that is the case, I do not want anything to be returned. Is this possible?

Thanks again.
Happy to help you
=If(A62="","",IF(ISNUMBER(FIND("Licenses",A62)),"YES","NO"))
 
Upvote 0

Forum statistics

Threads
1,215,065
Messages
6,122,944
Members
449,095
Latest member
nmaske

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