In Excel, I'm trying to do the following:
Where sheet1 column 1 = sheet2 column 2, return the value in sheet2 column D
I'm stumbling on how to do this as every example I've found seems to use the column index value of the sheet containing the formula. (i.e., sheet1)
I want: VLOOKUP(sheet1!A1,sheet2!A2:A11696,sheet2!4,FALSE)
I can only: VLOOKUP(sheet1!A1,sheet2!A2:A11696,4,FALSE)
After reading other threads, I see people seem to recommend using INDEX. So I tried
=INDEX(sheet2!A2:A11696, MATCH(sheet1!A1004,sheet2!D:D,FALSE))
This doesn't work either.
See Question&Answers more detail:os