reverse an existing conditional format formula to highlight the opposite data

Perodin

Board Regular
Joined
Sep 16, 2014
Messages
54
I am currently using =COUNTIF($A$4:$A$1088, B3) to conditional highlight B3:AQ1000 for duplicate values found in A4:A1088. How would I make this highlight the reversal, as in all cells that are not duplicates of A4:A1088?
Have already tried =COUNTIF($A$4:$A$1088, "<>"&B3) and more and could use some help.
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Try this...

=COUNTIF($A$4:$A$1088, B3)=0
or
=NOT(COUNTIF($A$4:$A$1088, B3))

Or if there are just the two conditions, give all the rows a default "No Duplicate" format and just use the "Duplicate" condition.
 
Last edited:
Upvote 0
Try this...

=COUNTIF($A$4:$A$1088, B3)=0
or
=NOT(COUNTIF($A$4:$A$1088, B3))

Or if there are just the two conditions, give all the rows a default "No Duplicate" format and just use the "Duplicate" condition.

The NOT function got it done, I forgot it even existed. Thank You
 
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,746
Members
448,989
Latest member
mariah3

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