Taking data from 1 sheet to another with 2 matching columns.

chester12

New Member
Joined
Feb 16, 2014
Messages
43
Office Version
  1. 2010
Platform
  1. Windows
I am struggling with this. Sheet 1 and Sheet 2 are in the same workbook.

cell b4 of sheet 1 contains the name Van Huysen
cell s4 of sheet 1 contains the date 19/02/2016

column a of sheet 2 may contain date 19/02/2016
column l of sheet 2 may contain the name Van Huysen

I need matching data from column q and column u of sheet 2 into sheet 1 ..starting at cell w4 and x4

the name and date must be on the same row in sheet 2 also.



Thanks.
 
Last edited:

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Hi Chester,

for column Q in sheet 2, match criteria placed at W4 in sheet 1

=INDEX(Sheet2!Q:Q,MATCH(B4&S4,Sheet2!I:I&Sheet2!A:A,0))

for column U in sheet 2, match criteria placed X4 in sheet 1

=INDEX(Sheet2!U:U,MATCH(B4&S4,Sheet2!I:I&Sheet2!A:A,0))

after inserting this formula, don't press enter, but press Ctrl + shift + enter, that's an array formula.


thanks
Warm regards

Adrian
 
Upvote 0
Hi Chester,

for column Q in sheet 2, match criteria placed at W4 in sheet 1

=INDEX(Sheet2!Q:Q,MATCH(B4&S4,Sheet2!I:I&Sheet2!A:A,0))

for column U in sheet 2, match criteria placed X4 in sheet 1

=INDEX(Sheet2!U:U,MATCH(B4&S4,Sheet2!I:I&Sheet2!A:A,0))

after inserting this formula, don't press enter, but press Ctrl + shift + enter, that's an array formula.


thanks
Warm regards

Adrian

Thanks Adrian

The I column was actually an L column ..my fault...worked perfectly thank you
 
Upvote 0

Forum statistics

Threads
1,215,388
Messages
6,124,652
Members
449,177
Latest member
Sousanna Aristiadou

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