K
Kashyap
I was try on a formula something like, if 1 of the words in b10=d10 then it
should give output as 1 in E10
should give output as 1 in E10
I was try on a formula something like, if 1 of the words in b10=d10 then it
should give output as 1 in E10
Kashyap said:I was try on a formula something like, if 1 of the words in b10=d10 then it
should give output as 1 in E10
Glenn said:Case sensitive:
=IF(ISERROR(FIND(B10,D10)),0,1)
Not case sensitive:
=IF(ISERROR(SEARCH(B10,D10)),0,1)
Glenn said:Remove the
" "&
and
&" "
from both parts of the formula.
Kashyap said:=IF(ISERROR(SEARCH(B10,D10)),0,1) - This formula will search a word even
though something else is prefixed/suffixed to the word
where as
=INDEX($H$1:$H$25,MATCH(0,--ISERROR(search(" "&$H$1:$H$25&" "," "&B1&"
")),0))
- This will not serch if something else is prefixed/suffixed to the word.
For Eg., - Take a word Kashyap
if in a sentence word is Kashyap# then 1st formula detects where as 2nd
doesn't..
How to make 2nd formula detect words as 1st?
Kashyap said:yes, I did enter both as array-formulas.. result from 2nd formula was '0'
Kashyap said:I'm getting error.. #N/A
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.