LOOKUP Help Using non-First Column

R

RoadKill

Hello,

I am trying to pull data from the 5th column of a sheet as opposed to the
first. Here is my current formula: vlookup(A4,Sheet1!A1:T100,16,0).

What I want to do is change A4 to E4 of the same sheet, for these purposes,
Sheet1.

I don't think the VLOOKUP is a viable option so wanted to see if somone had
a better idea.

Thanks
 
R

RoadKill

If I am using E4 though, this seems like it would be logical:
=index(sheet1!p:p,match(e4,e:e,0)). However, it just seems to pull the fourth
row of P instead of actually matching to E4 of Sheet2.
 
D

Dave Peterson

I'm not sure what sheet holds the formula. I'm not sure what sheet holds E4.
And I'm not sure what sheet holds the column to match and column to retrieve.

Maybe...

=index(sheet1!p:p,match(sheet2!e4,sheet1!e:e,0))

If the formula is on sheet1, then you don't need the sheet1 references.
If the formula is on sheet2, then you don't need the sheet2 reference.
 

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

Top