how to combine concatenate, index and match???? PLEASE HELP!!!

pennydao

New Member
Joined
Jun 11, 2015
Messages
3
Hello,
I have sheet 1 as below:
(col A) (col B) (col C) (col D)
1 firstname lastname AddressLine1 ContactGUID
2 Chantal Dewit 6860 SW 76th Ter 9A5A229E-E738-4C7B-8F9E-85FAB84BBFD93
3 Steve Goldfarb 8833 Bayside Ct AA0A610E-5DAC-44DC-ACB7-F77F864347C6

Sheet 2:

(col A) (col B) (Col C) (col D)
1 firstname lastname AddressLine1 ContactGUID
213 Chantal Dewit 6860 SW 76th Ter
906 Steve Goldfarb 8833 Bayside Ct

I wish to lookup the value on sheet 1 in the ContactGUID column which match the result after concatenate sheet 2 A:D

I wish my result for on sheet 2 D column to look like this:

(col A) (col B) (Col C) (col D)
1 firstname lastname AddressLine1 ContactGUID
213 Chantal Dewit 6860 SW 76th Ter 9A5A229E-E738-4C7B-8F9E-85FAB84BBFD93
906 Steve Goldfarb 8833 Bayside Ct AA0A610E-5DAC-44DC-ACB7-F77F864347C6

please help!!!
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Hello,

By adding a dummy column E in sheet 1 where you concatenate the values of A, B, C, you can then use this formula in Sheet2 :
Code:
=INDEX(Sheet1!D1:D2,MATCH(CONCATENATE(A1,B1,C1),Sheet1!E1:E2,0))
 
Upvote 0
I tried that but still didn't work. I came up with this

=INDEX(Sheet1!$D$2:$D$1025,MATCH(CONCATENATE('sheet2'!I2,'sheet2'!J2,'sheet2'!K2),Sheet1!$A$2:$C$1025,0))

Still did not work :/ what else can I try?
 
Upvote 0

Forum statistics

Threads
1,214,805
Messages
6,121,664
Members
449,045
Latest member
Marcus05

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