Reputation: 223
I have data that look like this (going on for many more rows):
What I want to do is:
For example, I:Q1652 matches up with J:Q1662; therefore, C:Q1652 should also match up with G:Q1662.
For example, when C:Q1652 and G:Q1662 are being matched, they should carry with them their respective rows/values from columns A & B and E & F.
Please let me know if there's anything more I can clarify! Thanks!
Upvotes: 0
Views: 76
Reputation: 2689
Please see K1:N1 cells in the below graph.
=INDEX(A:A,MATCH($I1,$C:$C,0))
=INDEX(B:B,MATCH($I1,$C:$C,0))
=INDEX(E:E,MATCH($J1,$G:$G,0))
=INDEX(F:F,MATCH($J1,$G:$G,0))
Upvotes: 1