Conditional Formatting Not Count If Formula

Glasgowsmile

Active Member
Joined
Apr 14, 2018
Messages
280
Office Version
  1. 365
Platform
  1. Windows
Good day,

Trying to get 1 conditional format formula that looks at 3 columns (F5:F29, I5:I29, L5:L29) of data and highlights A5 if A5 data is not found in all 3 together.

This is what I currently have but I'm not sure how to scale this up to what I need.

Rich (BB code):
=NOT(COUNTIF($F$5:$F$29, A5)
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
How about
Excel Formula:
=AND(COUNTIF($F$5:$F$29, A5)=0,COUNTIF($I$5:$I$29, A5)=0,COUNTIF($L$5:$L$29, A5)=0)
 
Upvote 0
Solution
How about
Excel Formula:
=AND(COUNTIF($F$5:$F$29, A5)=0,COUNTIF($I$5:$I$29, A5)=0,COUNTIF($L$5:$L$29, A5)=0)

Very cool, thanks. I was just starting to try COUNTIF () + COUNTIF() which probably would have done the same but I like your approach better.
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0
Perhaps.

=COUNTIF(F5:F29, A5)+COUNTIF(I5:I29, A5)+COUNTIF(L5:L29, A5)=0
 
Upvote 0

Forum statistics

Threads
1,214,642
Messages
6,120,698
Members
448,979
Latest member
DET4492

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