Please help: VLOOKUP external workbook with concatenated file name

commytarter

New Member
Joined
Nov 19, 2013
Messages
5
=VLOOKUP(B6,'C:\Documents\Desktop\input files\[=CONCATENATE(TEXT(B6,"mm.dd.yyyy"),".xls")]01.31.2014'!$E$2:$I$7,2,FALSE)

This is the formula I tried and did not succeed.

I'm trying to pull info from external workbooks that are named with dates I have listed in column B of my current workbook.
I thought I could put a concatenate function inside the brackets, where the file name belongs.

I was also hoping to do this for the tab name.

Am I completely off course here? Someone please help me out
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Yes, I used the indirect function.

=INDIRECT(CONCATENATE("[",TEXT(Friday_Date,"mm.dd.yyyy"),".xls]Sheet1!F",MATCH(B6,INDIRECT(CONCATENATE("[",TEXT(Friday_Date,"mm.dd.yyyy"),".xls]Sheet1!E:E")),0)))
 
Upvote 0
Maybe this:

Code:
=VLOOKUP(B6,INDIRECT("'C:\Documents\Desktop\input files\["&TEXT(B6,"mm.dd.yyyy")&".xls]01.31.2014'!$E$2:$I$7"),2,0)

Markmzz
 
Upvote 0

Forum statistics

Threads
1,215,086
Messages
6,123,043
Members
449,092
Latest member
ikke

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