Excel Merging Rows Help
June 23, 2010 1:57 PM Subscribe
I have an excel 2007 spreadsheet that has 4,000 rows and 6 columns of information. Need help merging some of the rows together.....
Columns = name, address, primarykey, company, telephone, email
The information comes from two different spreadsheets and I've merged them into one.
Row 1 looks like this:
Bob Smith, ,Atlas, 555-555-1212, smithb@atlas.com
Row 2 may look like this:
Bob Smith, 123 Road, smithb, , ,
Some of the information is out of date and I may not have the 2nd row of information.
I basically need to:
Find duplicate names
merge the address and primary key column information into the 1st row and delete the 2nd row
Any ideas?
posted by bleucube to computers & internet (10 answers total)
If names are in column A, and new column is column B, formula in B2 should be:
=COUNTIF(A:A,B2)
That will be 1 for all names that are not repeated, and > 1 for any name that is repeated.
Depending on the number of duped names, this could make it an easy manual task, or not really help at all.
posted by inigo2 at 2:11 PM on June 23, 2010