So, I'm not really sure the best way to go about this. I'm trying to highlight cells if two conditions are met: If the cells do not contain the word "Null" and if Cell O2<>P2 (or do not format if O2=P2). I've tried a few different variations, but here's what my code (that's not working) looks like at the moment.
=NOT(OR("Null",O2=P2))
I already have conditional formatting for when O2=P2 and when a cell contains "Null". Now, I just need to highlight the other ones.
"Null"
on its own cannot returnTRUE
orFALSE
. Try: =AND(A1<>"Null", $O$2<>$P$2)` (assuming the first cell that should be formatted isA1
) – cybernetic.nomad=AND(P2<>"Null",O2<>P2)
– howradisit