View Single Post
  #2   Report Post  
Fredrik Wahlgren
 
Posts: n/a
Default


"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