Good morning. I have a worksheet with several named ranges. On a second sheet I am constructing a chart whereby the user can enter one of the named ranges and the chart automatically updates with the data pertinent to that particular named range. The difficulty I have is in looking up the data. When I hard-code my named range into HLOOKUP, it works correctly.
ex: =HLOOKUP(B1,NAMEDRANGE,2,FALSE)
But when I attempt to refer to the named range via the cell the user enters the named range into I get a VALUE error.
ex: user enters NAMEDRANGE into cell A1. The formula
=HLOOKUP(B1,A1,2,FALSE) evaluates A1 as “NAMEDRANGE” (text) and not as a named range.
How can this be accomplished?
Thank you.
ex: =HLOOKUP(B1,NAMEDRANGE,2,FALSE)
But when I attempt to refer to the named range via the cell the user enters the named range into I get a VALUE error.
ex: user enters NAMEDRANGE into cell A1. The formula
=HLOOKUP(B1,A1,2,FALSE) evaluates A1 as “NAMEDRANGE” (text) and not as a named range.
How can this be accomplished?
Thank you.