Combining multiple Vlookups in one cell with text added

brooksc29

Active Member
Joined
Jul 25, 2010
Messages
333
I am trying to make a cell pull in data from 5 other cells using Vlookup.

The final result needs to look like this in cell Q7.

1.1IP, 3H, 0ER, 0BB, 2K

The IP, H, ER, BB, and K need to be added after the data in front of it.

for IP this is the formula:
=VLOOKUP($A$2, LAST7DAYSP!B3:W17, 13, FALSE) & "IP,"

for H it's this:
=VLOOKUP($A$2, LAST7DAYSP!B3:W17, 14, FALSE) & "H,"

for ER:
=VLOOKUP($A$2, LAST7DAYSP!B3:W17, 16, FALSE) & "ER,"

for BB
=VLOOKUP($A$2, LAST7DAYSP!B3:W17, 17, FALSE) & "BB,"

for K:
=VLOOKUP($A$2, LAST7DAYSP!B3:W17, 19, FALSE) & "K"

is there a way to combine all of those so cell Q7 reads like :
1.1IP, 3H, 0ER, 0BB, 2K
?

thanks for your help!
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Wrapping them in CONCATENATE, I believe...

=CONCATENATE(
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 13, FALSE) & "IP," ,
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 14, FALSE) & "H," ,
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 16, FALSE) & "ER," ,
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 17, FALSE) & "BB," ,
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 19, FALSE) & "K" )
 
Upvote 0
Additional variations:

=
CONCATENATE(
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 13, FALSE) , "IP," ,
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 14, FALSE) , "H," ,
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 16, FALSE) , "ER," ,
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 17, FALSE) , "BB," ,
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 19, FALSE) , "K" )

=
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 13, FALSE) & "IP," &
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 14, FALSE) & "H," &
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 16, FALSE) & "ER," &
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 17, FALSE) & "BB," &
VLOOKUP($A$2, LAST7DAYSP!B3:W17, 19, FALSE) & "K"
 
Upvote 0

Forum statistics

Threads
1,224,520
Messages
6,179,270
Members
452,902
Latest member
Knuddeluff

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