Merging different spreadsheets

G

Guest

I have a spreadsheet of 15,000 rows. I have another sub-set spreadsheet of
around 5,000 rows. The sub-set contains more current information that needs
to be merged into the master 15,000 row file. There is a key, Application
Number.

We are running Excel 2002 SP3.

What is the best way to go about doing this???

Thanks in advance for your help.
 
P

Pete

Are the new records going to replace the equivalent records in the old
sheet? If so, then you can add this formula in a blank column of the
old sheet:

=IF(ISNA(VLOOKUP(A1,new!$A$1:$A$5000,1,0)),"unique","duplicate")

and copy it down to the bottom of the 15,000 records. This assumes that
Application_Number is column A in both sheets, and that the more
up-to-date sheet is named "new" - adjust these to suit. The formula
identifes those records in the old sheet for which there is a duplicate
in the new sheet.

I would suggest then that you sort the data in the old sheet in
descending order using this new column, so that all the "duplicate"
records fall to the bottom. These can then be deleted, and all the
records from the new sheet can then be pasted in at the bottom of the
unique records. You can delete this helper column, and re-sort the data
on the key field.

Hope this helps.

Pete
 

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