View Single Post
 
Old 06-24-2014, 07:56 AM
BobBridges's Avatar
BobBridges BobBridges is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: May 2013
Location: USA
Posts: 700
BobBridges has a spectacular aura aboutBobBridges has a spectacular aura about
Default

Yes, you can. This is what the INDIRECT function is for. You'd just do it this way:
Code:
=VLOOKUP(10,INDIRECT("'Sheet Name'!$B$3:$F$11"),2,FALSE)
(Pause to check for syntax errors....) Yep, I think that's right. The INDIRECT function, as you may have figured out, takes a character string and interprets it as an address or range, which is what you want here. Give it a shot, and let me know if it doesn't work, but I think it's right.
Reply With Quote