TesseractE
New Member
- Joined
- Nov 30, 2011
- Messages
- 38
I've been looking around on the web for an answer to this quandary, but haven't been able to nail one down yet. Everyone says they get a #VALUE error, but I think I've figured out why that error happens.
Just can't think of how to fix it.
=VLOOKUP("Totals","'G:\Folder Tree\[Reports_"&TEXT($A8,"mm-dd-yy")&"_Team Alpha.xlsx]Daily Productivity'!$B$17:$L$17",1)
Column A has the day's date, and the formula above would be in column B alongside.
The concatenation in VLOOKUP's Table Array boils down to this: "'G:\Folder Tree\[Reports_12-08-11_Team Alpha.xlsx]Daily Productivity'!$B$17:$L$17"
Here's the thing, though: It keeps the double quotes around the Cell Location.
If I were to rewrite it directly like this: =VLOOKUP("Totals",'G:\Folder Tree\[Reports_12-08-11_Team Alpha.xlsx]Daily Productivity'!$B$17:$L$17,1) it works perfectly fine.
Evaluating the initial formula tells me I have the concatenation prepared right, and if I put double quotes around the cell location on the one that otherwise works, it breaks and returns #VALUE. So it seems to be narrowed down to those persistent double quotes.
Any ideas on how to work around this in Excel 2007?
Just can't think of how to fix it.
=VLOOKUP("Totals","'G:\Folder Tree\[Reports_"&TEXT($A8,"mm-dd-yy")&"_Team Alpha.xlsx]Daily Productivity'!$B$17:$L$17",1)
Column A has the day's date, and the formula above would be in column B alongside.
The concatenation in VLOOKUP's Table Array boils down to this: "'G:\Folder Tree\[Reports_12-08-11_Team Alpha.xlsx]Daily Productivity'!$B$17:$L$17"
Here's the thing, though: It keeps the double quotes around the Cell Location.
If I were to rewrite it directly like this: =VLOOKUP("Totals",'G:\Folder Tree\[Reports_12-08-11_Team Alpha.xlsx]Daily Productivity'!$B$17:$L$17,1) it works perfectly fine.
Evaluating the initial formula tells me I have the concatenation prepared right, and if I put double quotes around the cell location on the one that otherwise works, it breaks and returns #VALUE. So it seems to be narrowed down to those persistent double quotes.
Any ideas on how to work around this in Excel 2007?