Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Merge two XLS with some fields the same

Status
Not open for further replies.

icetea

Technical User
Nov 28, 2002
45
0
0
US
I have two excell tables I'm working with one table is 15 wide (O) and the other is 6(F) both tables have data I need both have col (A) with the same data. How would I merge the two tables into one keeping only one of the (A) fields?
 
Just use a vlookup on the colA data
In col P
=if(isna(vlookup(A2,othersheet!$A$2:$F$1000,2,false)),"",vlookup(A2,othersheet!$A$2:$F$1000,2,false))

where the last row of your data in the "otherSheet" is 1000
In Q, change the 2 to a 3, in R, to a 4 etc etc

Rgds, Geoff
[blue]Si hoc signum legere potes, operis boni in rebus Latinus alacribus et fructuosis potiri potes![/blue]
Want the [red]best[/red] answers to your questions ? faq222-2244
 
Skip,

Each has 1689 rows one has 3 colums the other has 15.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top