VLOOKUP with CONCATENATED result (col_index_num)

mrnewbie

New Member
Joined
May 20, 2014
Messages
10
Hi there,

I am trying to figure out how to perform a VLOOKUP and return a concatenated result from multiple columns on the matched row. Below is how I want the data to end up looking:

Result Worksheet
ABC
1Full NamePhoneAddress
2Joe Smith1234123 Gumdrop Lane, Gummie, Candyland
3Sally May5678123 Snickers St., Cocoa, Candyland

<tbody>
</tbody>

Database Worksheet
ABCDE
1Full NamePhone Home StreetHome CityHome State
2Joe Smith1234123 Gumdrop LaneGummieCandyland
3Sally May5678123 Snickers St.CocoaCandyland

<tbody>
</tbody>

The VLOOKUP for the single match in the "Phone" column is working fine.

Example for B2 in "Result" Worksheet:

Code:
=IF(A2<>"",VLOOKUP(A2,'Database'!$A$2:$E$3,2,FALSE),"")

Now for cell C2 in the "Result" worksheet I want to concatenate C2:E2 in the "Database" worksheet (adding commas and spaces in between). Can someone please advise? Thanks a million!

Jared
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
I mean the simple answer would be to use different vlookups in one formula and nest them with a "&" symbol

So with your formula

Code:
=IF(A2<>"",VLOOKUP(A2,[COLOR=#333333]'Database'!$A$2:$E$3[/COLOR],2,FALSE),"")&" ,"&IF(A2<>"",VLOOKUP(A2[COLOR=#333333]'Database'!$A$2:$E$3[/COLOR],3,FALSE),"")&" , "&IF(A2<>"",VLOOKUP(A2,[COLOR=#333333]'Database'!$A$2:$E$3[/COLOR],4,FALSE),"")
 
Upvote 0
Thanks, Slizer6893. I appreciate the help!

With a big database will this affect speed significantly? Do you know of any more efficient alternatives? My preference would be to minimize the number of search calls, but your solution works. Thanks again.
 
Upvote 0
Oh my this would be so slow on anything over a couple thousand rows I would think. What you want is an array formula, I'll try and write one up
 
Upvote 0
Got it. I figured it might be a bit laggy. If you're able to write up an array formula that would be terrific! I'm just getting into this stuff so having a formula will be a great learning tool for me. Thanks!
 
Upvote 0
I think I took this too far...but this should work? At least try it and then we can tweak the references and what not. Works with your mini data set and should work on LOTS of data too

Ctrl+Shift+Enter is how you enter this in as an array formula

Code:
=IFERROR(INDEX(database!D$1:D$4,SMALL(IF(B3=database!$B$1:$B$50,ROW(database!$B$1:$B$50)-MIN(ROW(database!$B$1:$B$50))+1,""),ROW(database!$A$1)))," ")&","&IFERROR(INDEX(database!E$1:E$4,SMALL(IF(B3=database!$B$1:$B$50,ROW(database!$B$1:$B$50)-MIN(ROW(database!$B$1:$B$50))+1,""),ROW(database!$A$1)))," ")&","&IFERROR(INDEX(database!F$1:F$4,SMALL(IF(B3=database!$B$1:$B$50,ROW(database!$B$1:$B$50)-MIN(ROW(database!$B$1:$B$50))+1,""),ROW(database!$A$1)))," ")

This is some ugly formula writing in my opinion but I tried and it should work.
 
Upvote 0
Thanks for the help. Unfortunately I am unable to get the above formula to work, even with the sample data set. Might you be able to cull down the array formula so that it's only grabbing the "Home Street" field from the "Database" worksheet? That way I can make sure I'm inputting the formula correctly, then I can add on the concatenated stuff. Thanks again.
 
Upvote 0
Code:
=IFERROR(INDEX(D$2:D$5,SMALL(IF(B6=$B$2:$B$51,ROW($B$1:$B$50)-MIN(ROW($B$1:$B$50))+1,""),ROW($A$1)))," ")

Alright let me break this down, it doesn't have your database reference but you can figure that much out, this formula would go into the address cell after Joe Smith and 1234.

Let's see if I can explain this better so you can adjust/fix it going forward.

=Iferror(INDEX(D$2:D$5)

First part, hopefully this is somewhat familiar. This is looking at only that section, obviously for more rows you will make the reference range much larger.


SMALL(IF(B6=$B$2:$B$51

Next part of the formula is taking the smallest point in which B6 is found in the range where the full name is found, basically a match. The way it works is Small(Array,K) where k is the lowest variable we want to look at. For this first part that would be the lowest possible value.

ROW($B$1:$B$50)-MIN(ROW($B$1:$B$50))+1

Where the formula starts to look at what has happened, it looks down the rows and subtracts the minimum row, which would be a row already used. Since this is the first step it will still look for the row with Joe Smith on it and not keep going down.

ROW($A$1)))," ")

Finally this is where the SMALL(K) comes from.

Try this on just your practice data, and then we can make it grow to include more and more.
 
Upvote 0
Thanks! It's starting to come together. I have it pulling data from the sample set. I simply needed to replace

SMALL(IF(B6=$B$2:$B$51

with

SMALL(IF(B2=$B$2:$B$51

and then add the worksheet reference. Now, to increase the range and concatenate the HOME STREET and HOME CITY fields, I'm using the following code:

Code:
[/COLOR]=IFERROR(INDEX('database'!$C$2:$C$5000,SMALL(IF(B2='database'!$B$2:$B$5001,ROW('database'!$B$1:$B$5000)-MIN(ROW('database'!$B$1:$B$5000))+1,""),ROW('database'!$A$1)))&", "&INDEX('database'!$D$2:$D$5000,SMALL(IF(B2='database'!$B$2:$B$5001,ROW('database'!$B$1:$B$5000)-MIN(ROW('database'!$B$1:$B$5000))+1,""),ROW('database'!$A$1)))," ")[COLOR=#333333]

The problem now is that it's not working as an array formula. When I use this formula across C2 and C3 (the ADDRESS fields in the Result worksheet) by hitting Ctrl+Shift+Enter, I get Joe Smith's address across both fields. Any tips on how to solve this?
 
Upvote 0
Umm, that seems odd. If you copy down the formula it will add to the array. You could enter the formula in the first cell and also select all the cells you want it in then hit CTRL+SHIFT+ENTER.

I tested your formula on my data and it worked fine so I'm not sure what you aren't doing

Does the second formula have { } around it?
 
Upvote 0

Forum statistics

Threads
1,214,988
Messages
6,122,620
Members
449,092
Latest member
amyap

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