Eliminating duplicates

H

Harish

Hi,

I have two columns full of email addresses and there are duplicates in
both the columns. How do I eliminate duplicates? IS there any function
that I could use to solve this problem? Thanks
 
B

Bill R

Harish said:
Hi,

I have two columns full of email addresses and there are duplicates in
both the columns. How do I eliminate duplicates? IS there any function
that I could use to solve this problem? Thanks

Sort the spreadsheet by the column(s) with duplicates in ascending order



In a helper column type-

=IF(A2=A1,1,0)

and copy down to the last occupied row



Change the formula to numbers. To do this -

Highlight the helper column

Click on <Edit><Copy><Edit><Paste special><Values><OK>



Sort on the helper column

Delete all rows where value in the helper column is 1



That will eliminate duplicates in individual columns.



Bill R
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top