In Excel, “Unique values” in Conditional Formatting does not mean “values that appear in one column but not the other.” It means “values that occur only once within the combined range you selected.” This is why some of your cells are not being highlighted — they actually occur more than once somewhere in the full combined range.
When you select:
$B$2:$B$1048576,$F$2:$F$1048576
Excel treats that as one giant list, and highlights only the values that appear exactly once anywhere in that entire list. If a value appears twice (once in B and once in F), Excel considers it not unique.
To fix this, highlight values in B that do not exist in F (or vice-versa):
- Highlight items in Column B that are NOT in Column F
- Use a formula rule:
- Select B2:B1048576
- Conditional Formatting → New Rule → “Use a formula”
Formula:
=COUNTIF($F:$F,B2)=0
- Choose your format → OK.
Next, highlight items in Column F that are NOT in Column B
Repeat for Column F:
Select F2:F1048576
Conditional Formatting → New Rule → “Use a formula”
Formula:
=COUNTIF($B:$B,F2)=0
- Choose format → OK.
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin