View Single Post
  #3   Report Post  
cisse_5
 
Posts: n/a
Default

Thank you I will give it a try.

"Fredrik Wahlgren" wrote:


"BobbiCisse" wrote in message
...
I would like to create something that uses the following statement. If

cell
A4 "contains" the value of johnson then true else false. I want Excel to
perform a statement of things that are LIKE but may contain some or all
characters/values.



Someting like this? Unfortuntely, I had to translate from Swedish. You may
also want to use LOWER(A1) To make sure you get a match for JOHNSON

=IF(ISERR(FIND("johnson",A4,1)), False,True)

/Fredrik