Conditional formatting not containing specific text - two different texts

mikec82

Board Regular
Joined
Jan 13, 2009
Messages
225
I'm trying to create a conditional formatting rule where the cell value does not contain specific text. Cells either say "mother", "father", or a number of different options. I want to find everything but "mother" or "father". Would I have to use a formula for that, or can I use "cell value" "does not contain"?
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Would it be "isnottext"? And pardon the beginner question, but what would the formula look like if the range is =$H:$H,$M:$M,$R:$R,$W:$W ?
 
Upvote 0
Would it be "isnottext"? And pardon the beginner question, but what would the formula look like if the range is =$H:$H,$M:$M,$R:$R,$W:$W ?

I'm not sure I follow. Are you looking for conditional formatting or are you trying to find words in a range?
 
Upvote 0
Trying to find anything in range =$H:$H,$M:$M,$R:$R,$W:$W that does not contain the text "mother" or "father".
 
Upvote 0
If you're literally looking for anything other than those two words you can get rid of the ISTEXT. But then it will highlight blank cells as well. Try this as the CF in H1. Use the format painter to copy the conditional formatting down:

=AND(H1<>"father",H1<>"mother")
 
Upvote 0

Forum statistics

Threads
1,222,575
Messages
6,166,857
Members
452,080
Latest member
Akin Himself

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top