Share via

case sensitive duplicate removal - Excel

Anonymous
2010-10-18T12:37:37+00:00

I am trying to merge 2 property-value files using excel to sort filter and remove the duplicates from the merge.

however it seems that to remove the duplicates, it uses case insensitive comparison to detect them. Is

there a way to force it to use case sensitive comparison to remove only those exact duplicates?

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2010-10-18T12:43:38+00:00

Hi, look CPearson solution

http://www.cpearson.com/excel/deleting.htm

go to the middle of the page where it says Delete Duplicate rows

hope this helps

Was this answer helpful?

0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Anonymous
    2010-10-18T13:40:04+00:00

    .. > Is there a way to force it to use case sensitive comparison to remove only those exact duplicates?

    This formula will flag out uniques based on case sensitive, exact matches (FIND is case sensitive)

    Assume your source data running in A2 down

    Put in B2: =IF(A2="","",IF(SUMPRODUCT(--ISNUMBER(FIND(A2,A$2:A2)))>1,"","x"))

    Copy down. Autofilter on col B, choose "x" - these will be the uniques

    Copy the filtered set of uniques, paste special as values elsewhere

    Was this answer helpful?

    3 people found this answer helpful.
    0 comments No comments