Compare two columns without highlighting (CF) same data

TXNCPO

New Member
Joined
Nov 1, 2011
Messages
32
Office Version
  1. 2016
Platform
  1. Windows
Sorry that title is vague,

I have a project where I am comparing Column D with Column J, Easy enough with standard CF rules, but I only wish to highlight the duplicates between column D and J, I am not concerned with/if there are duplicates with in each column (D or J) just if there are duplicates between the two.


I have tried to get =countif($J:$J, $D1) to work, and it does "highlight" most of the cells, but does leave some obvious duplicates without being highlighted.

There is 653 lines of data in Column D and approx 9543 in column J, maybe the formula is to simple, or perhaps my PC dosent have enough resources to plow thru that comparison?

Open to any ideas. Sorry for not understanding basics better.

R/ Joe
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
I have tried to get =countif($J:$J, $D1) to work, and it does "highlight" most of the cells, but does leave some obvious duplicates without being highlighted.
That works fine for checking for the value of D1 in column J. So you would use that for highlighting column D. But for column J, you would need to go the other way, i.e.
Code:
=COUNTIF($D:$D,$J1)
 
Upvote 0

Forum statistics

Threads
1,215,050
Messages
6,122,868
Members
449,097
Latest member
dbomb1414

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