I am having an issue with a Vlookup formula.
the workbook contains 3 sheets.
I need to compare values from E2:E867
on sheet 2 with the values from C2:C867
on sheet 3 and return the value from sheet 3 column B on sheet 2. this should be relatively straight forward except the values from E2:E867
on sheet 2 are populate by another Vlookup
formula so the vlookup
I am writing is looking at the actual formula in E2:E867
on sheet 2 instead of the resulting values in E2:E867
on sheet 2.
how can I get the vlookup
to compare the resulting values in E2:E867
on sheet 2 in stead of the formulas resulting values in E2:E867
on sheet 2.
formula that is used to populate E2:E867
=VLOOKUP($A489,'sheet 2'!$A$2:$L$867,7)
formula that is having issues
=VLOOKUP($E489,'sheet 3'!$C$2:$C$867,2)
it should return the value in column 2 from sheet 3 that matches the value of cell E489
, but instead, when you step into the formula, it looks at the formula from E2:E867
.
I know I may not be asking the question clearly, so please let me know if you need some clarification.
thank you.
E489
intoSheet3!A2:A867
. If it finds a match inSheet3!A2:A867
, then it will return the value in ColumnB
ofSheet3
. You keep saying that it's not getting the value from the formula in E489, but it is. The problem seems to be that you might be misunderstanding how vlookup works. – JNevill=INDEX('sheet 3'!B:B,MATCH($E489,'sheet 3'!C:C,0))
– Scott Craner