View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Danny Lewis Danny Lewis is offline
external usenet poster
 
Posts: 44
Default how to merge two spreadsheets and remove duplicated entries.

Add a new column at the end. Assuming the data starts in row 2, type in the
first row
=COUNTIF($A$2:$A2,$A2)

and drag the formula down

Autofilter the results for numbers greater than 1.

HTH
Danny

"Lamb Chop" wrote:

I have two spreadsheets

They are in the same format, ie.

A:A contain serial number
B:B contain product names
C:C supplier
D:D address
....
....


The two spreadsheets are regularly update by me and my bussiness partner in
another country.

However, when I get the file from my partner, her spreadsheet may contain
some new entries.
If I just copy and paste her spread sheet into mine and there will be some
items being double entry.

How can I delete the double entries after copy and paste?

Thanks