Vlookup, concantenate multiple results... Help!

bobletcs123

New Member
Joined
Jan 31, 2019
Messages
27
Office Version
  1. 365
Platform
  1. Windows
Good Morning All,

Having trouble getting multiple results from a Vlookup. Using Excel 16.

Have list with po numbers and they have multiple tracking numbers. Would like to be able to look up po on separate sheet and have all the associated tracking numbers concatenated there... Maybe i should just pivot the PO and try and concatenate the tracking, then do Vlookup? Either way, getting kind of lost. Any help would be greatly appreciated. Looked at a few things on forum and none of those worked for me.

EX: A is PO (could be pivoted), B is All tracking number associated.
Results = C (A) and D, concatenated tracking (B concatenated).

Eventually want to look up to other sheet for cust that i can just reference PO and pull concatenated tracking for them.
ABCD
1
PO NumberTrking NumberPOTrk
24501409946
4837132770914501409946483713227091, 483713277080, 483713277070, 483713277069
34501409946483713277080
44501409946483713277070
54501409946483713277069
64501409965
74501409965
84501409965
94501409965
104501409935
114501409935
124501409935
134501409935
144501409935
154501409935
164501409935
174501409822
184501409822
194501409822
204501409822

<tbody>
</tbody>

Thank you in advance!
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
D2 (Entered with Ctrl+Shift+Enter):
Code:
=TEXTJOIN(",",TRUE,IF(C2=$A$2:$A$20,$B$2:$B$20,""))
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,063
Messages
6,122,928
Members
449,094
Latest member
teemeren

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