vlookup returning #value!

N

nba

I have dates in on table and prices in another
using the formula
VLOOKUP(H9,VLOOKUP(F11,Dates,2,FALSE),WEEKDAY(D11)+2,FALSE)

table names are "low" "mid" and "high"

VLOOKUP(F11,Dates,2,FALSE) returns "low"
but when nested within the vlookup I get #value!

please help
 
E

Eduardo

Hi,
could you give a sample of your data and what exactly you want to achieve,
the second part of the formula make no sense as it
 
J

JLatham

As a first step, your outside VLOOKUP() is missing the column to return data
from parameter. It should be something like:

VLOOKUP(H9,VLOOKUP(F11,Dates,2,FALSE),WEEKDAY(D11)+2, ##, FALSE)
the missing part is the ##, that I added, which of course should be a column
number from the table whose name is being returned by the nested VLOOKUP().
 
J

JLatham

Oops - actually I misread your formula, and I see that
WEEKDAY(D11)+2
is filling the requirement that I thought was missing.

Instead!! Wrap the nested VLOOKUP with INDIRECT(), as
VLOOKUP(H9,INDIRECT(VLOOKUP(F11,Dates,2,FALSE)),WEEKDAY(D11)+2, FALSE)

I believe it'll work for you then.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

suming multiple rates 7
Need Help with VLOOKUP 4
Excel Vlookup Help 0
Remove #N/A Error 3
Vlookup help 2
VLOOKUP returning #N/A result 2
Vlookup 3
VLOOKUP isn't working properly in Excel on Mac 1

Top