Check if cells contain the word "Thailand", return "TRUE"

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a spread sheet (5000 entries)

i have an extra column at the end.

I'd like to generate a formula which find if my data in column A (A1:A5000)
contans the word "Thailand".

if it containt the word "Thailand" , i shall get a sign (or an indicator,
say... "TURE", something like that)
 
Thanks a lot for the reply first!

However, this is NOT working ! !

this formula returns cells "exactly equals" to "Thailand" , not "Containing"
the word "Thailand"

is there any other way to get it ?
 
Hello ali
Amend Mike's formula with:
=IF(COUNTIF($A$1:$A5000,"*Thailand*")>0,"True","")

HTH
Cordially
Pascal
 
=SUMPRODUCT(--(ISNUMBER(FIND("Thailand",A1:A5000))))

Do not use full column range with SUMPRODUCT
This
=SUMPRODUCT(--(ISNUMBER(FIND("Thailand",A:A))))
will not work
best wishes
 
Big thanks to all you guys, but i've already figured it out.

i just use " =ISERROR(SEARCH("thailand",A2,1))" , so i'll get "TRUE" and
"FALSE", and then i just re-sort them again and i'll get those entreis
containing "THAILAND"


thank you guys all anyway, ^_^!!!
 
Big thanks to all you guys, but i've already figured it out.

i just use " =ISERROR(SEARCH("thailand",A2,1))" , so i'll get "TRUE" and
"FALSE", and then i just re-sort them again and i'll get those entreis
containing "THAILAND"

thank you guys all anyway, ^_^!!!
--
Allen Phailat Wongakanit








- Show quoted text -

please view www.thaitreasuretrove for information on thailand and join
the forums to enjoy disscussions.

Stephen
 

Ask a Question

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.

Ask a Question

Back
Top