Updating a list to include new entries

masterbunny

New Member
Joined
May 25, 2016
Messages
4
I have no neat solution for the following (I do IF statements followed by lots of hand editing). Please lift me out of the dark ages (MS access is a great solution, but I need a quick Excel solution).

I have a list like
A
B
D
F
G

with lots of lovely useful data associated

Then I discover a more comprehensive list
A
B
C
D
E
F
G
I want to use this list but keep my data associated with my originals
I usually copy/paste the new list beside my first, but of course one list is longer than the other and the data not in the correct columns to associate with the new list.
This is the end result I want:
AAgreat info
BBB great info
C
DDD great info
E
FFF great info
GGG great info

<tbody>
</tbody>
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Hi,

Something like this ?
ABCDE
1LIST 1INFO 1LIST 2INFO
2AInfo AAInfo A
3BInfo BBInfo B
4C
5DInfo DDInfo D
6FInfo FE
7GInfo GFInfo F
8GInfo G
9
10
11
12
13
14
15

<tbody>
</tbody>

In E2 and copy down:
Code:
=IF(ISNA(VLOOKUP($D2,$A$2:$B$15,2,FALSE)),"",VLOOKUP($D2,$A$2:$B$15,2,FALSE))

Regards
XLearner
 
Upvote 0

Forum statistics

Threads
1,214,400
Messages
6,119,289
Members
448,885
Latest member
LokiSonic

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top