Formula help =CONCATENATE with Look up Function

zone709

Well-known Member
Joined
Mar 1, 2016
Messages
2,079
Office Version
  1. 365
Platform
  1. Windows
I am using =CONCATENATE(Detailed_View!B2," ",Detailed_View!A2), but i would like to use this with a Lookup. On current sheet i would put this formula in column B for a return.

What i need to do is if column D matches column D on Detailed_View then return Detailed_View!B2," ",Detailed_View!A2.

What i am trying to do is match column D and D from other sheet to return the first and last name on Detailed_view sheet.
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
How about
Excel Formula:
=IFERROR(CONCATENATE(INDEX(Detailed_View!$B$2:$B$300,MATCH(D2,Detailed_View!$D$2:$D$302,0))," ",INDEX(Detailed_View!$A$2:$A$300,MATCH(D2,Detailed_View!$D$2:$D$302,0))),"")
 
Upvote 0
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,051
Messages
6,122,871
Members
449,097
Latest member
dbomb1414

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