or you can name your range in 'RANGE B'!$A:$C and use that name
e.g
=AND(A1<>"",COUNTIF(MyRangeB,A1)=0)
and then do similarly in sheet b for MyRangeA
Sonia Bowditch
ASKER
Sorry NB_VC,
I can't get it to work as conditional formatting and if I try to use it as form of lookup it slows the spreadsheet down to a crawl.
Thanks
InfoSec36
stevepcguy
I was trying to follow NB_VC's advise as well, and encountering the same problem.
Obviously, conditional formatting cannot compare to cells on another worksheet. A nasty little dialog box will inform you of that.
Entering that as a form of lookup WILL suck up resources, since it is essentially going through EVERY cell and comparing it to every other cell on the other worksheet. It may work for smaller worksheets, but the calculations grow exponentially as the size of the ranges grow.
I'm not sure there's a solution that won't draw a lot of resources.
=AND(A1<>"",COUNTIF($A:$C,
adjust ranges for the 288 column.
this will highlight the cell if the content is not found in any other column