Need advice on Lookup function

scott-atkinson

I'm with the Witch.......
Local time
Today, 09:30
Joined
Aug 31, 2006
Messages
1,621
Can any of you guys give me assistance with a problem that I have.

I use Vlookup function regularly but need to know how to do the following.

I have a static report that I cannot change and I need to extract data from it using a Vlookup or similar function.

Below is a representaion of how this report is laid out.

Column A, Column B, Column C, Column D, Column E

I need to be able to reference a cell in Column E, but to return value in Column A, through D.

The easiest thing to do would be to swap column E data with Column A, but I do not have that luxury, I cannot change any aspect of this report.

Any help on achieving my this would be fantastic.

Please helpppppp :confused:
 
e.g
=INDEX(A: D,MATCH("lookupvalue",E:E),1)

will find ColA

Brian

There should be no space before the D but I got a smiley:D
 
Just realised from your post that you might want all 4 cols returned if so enter

=INDEX(A:D,MATCH("lookup value",E:E),0) into a cell and drag across 4 cells press F2 then Cntrl alt enter to enter as an array formula

Brian
 
Just realised from your post that you might want all 4 cols returned if so enter

=INDEX(A:D,MATCH("lookup value",E:E),0) into a cell and drag across 4 cells press F2 then Cntrl alt enter to enter as an array formula

Brian

Thanks Brian, that will be really useful.
 
Thanks Brian, that will be really useful.

=INDEX(A:D,MATCH("lookup value",E:E),0) into a cell and drag across 4 cells press F2 then Cntrl alt enter to enter as an array formula

Just discovered how to disable smileys.

Brian
 

Users who are viewing this thread

Back
Top Bottom