conditional formatting question

  • Thread starter Thread starter pierre
  • Start date Start date
P

pierre

hello
question about confitional formating....
if i would like to say : search for the world "axe".. i could write...
=search("axe",a1)

what if i would like to say ... search for the world "axe" OR the world "bee"

THANKS FOR YOUR HELP
 
In Conditional Formatting formula? Something like:
=IF(OR(NOT(ISERROR(SEARCH("axe",A1))),NOT(ISERROR(SEARCH("bee",A1)))))
 
condition 1 : formula is : =OR(A1="axe",A1="bee")

choose the color | ok
 
To get TRUE or FALSE use
=IF(ISNUMBER(SEARCH("axe",A1)),TRUE,IF(ISNUMBER(SEARCH("bee",A1)),TRUE))
 
oops !!! check this

condition 1 : formula is :
=IF(ISERROR(FIND("axe",A1)),FIND("bee",A1),FIND("axe",A1))
 

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

Similar Threads

mr t.valko ..help 8
how ?? 11
2 Horizinotal axes in Excel 2007 8
TO mr t.valko... 7
MR T VALKO ..PLZ HELP 1
Graph Manipulation 2
Need lookup of data both vertical and horizontal 2
Chart 2 axis 2

Back
Top