I want to combine two lists with data into one list with unique lines. There are several columns in the two lists, but the header row is the same.
A VBA-answer is OK, as well as help columns, array formulas etc. Anything by other words :-)
I want to combine two lists with data into one list with unique lines. There are several columns in the two lists, but the header row is the same.
A VBA-answer is OK, as well as help columns, array formulas etc. Anything by other words :-)
Last edited by mkvassh; 03-26-2010 at 03:27 AM.
Not enough info.![]()
What do you want to do with duplicates? Do you want to combine any lines (eg. in list1 there's info in col 1 and col 3 and in list2 there's info in col1 and 2)? What's preventing you from simply pasting the second list underneath the first list?
ChemistB
My 2?
substitute commas with semi-colons if your region settings requires
Don't forget to mark threads as "Solved" (Edit First post>Advanced>Change Prefix)
If I helped, Don't forget to add to my reputation (click on the little star at bottom of this post)
Forum Rules: How to use code tags, mark a thread solved, and keep yourself out of trouble
Sorry if I was not clear enought. See a simple example below.
List 1
First name Second Name
Ole Olsen
Hans Hansen
Magne Nilsen
List 2
First name Second Name
Ole Olsen
Hans Hansen
Tor Andersen
Unique list
First name Second Name
Ole Olsen
Hans Hansen
Magne Nilsen
Tor Andersen
I hope this explain what I need.
Here's how I would do it;
Assuming List1 on sheet1A2:B500, List2 on Sheet2 A2:B300
In a column (C) next to List1, =A2&B2 dragged down to concatenate the first and last names.
In A column (C) next to List2 =ISNUMBER(MATCH(A2&B2,$C$2:$C$500,0))
Then Filter List2 by Column C on True and copy and paste those rows over to List 1. Does that work for you?
It works. Thank you :-)
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks