Thank you for reviewing my question. Essentially I have a series of computer hostnames in column J. In the world of host id's; "DFG, "dfg" and "dFg" are all unique. Unfortunately, that's not how excel sees it.
I'm not too familiar with VBA however when I run a macro to and "remove duplicates" I get the following in VBA:
Columns("J:J").Select
ActiveSheet.Range("J:J").RemoveDuplicates Columns:=1, Header:=xlYes
Is there anything I can add/substitute in the VBA code so that removing duplicates only removes exact duplicates and my 3 case sensitive host id'd remain?