1

I have two Excel 2007 sheets A,B with the same columns.

B contains less rows, but has a column with updated data (i.e. data in this column is newer than in the same column in A). I want to take every row in B, find the corresponding row in A (through a unique key, f.e. column C1) and update the value of the column with the updated version from B.

Before

A           B   
C1 C2 C3    C1 C2 C3
1  2  3     1  2  99
2  6  7

After

A           B   
C1 C2 C3    C1 C2 C3
1  2  99    1  2  99
2  6  7

How could I achieve this?

2 Answers2

3

You could use VLOOKUP to initially populate the data, then copy values onto a new sheet to remove the reference.

Scott C Wilson
  • 2,454
  • 5
  • 23
  • 33
0

you can use the Vlookup or the If functions

Dima
  • 300