• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Not able to put Vlookup function

webmax

Member
Hi

I have a attached data in which i not able to put the vlookup function because my base data (Lookup Value )is after the output field which i required.

Kindly go through the attached file and guide me the formula
 

Attachments

  • vlookupformula.xlsx
    9.8 KB · Views: 6
Using an INDEX MATCH formula will get you the same result as as a VLOOKUP formula, but INDEX MATCH has the added benefit of allowing you to go right-to-left!

It's easy to convert your VLOOKUP to INDEX MATCH:

=VLOOKUP(Value,BegColumn:EndColumn,ColumnNum,True/False)
... now becomes ...
=INDEX(EndColumn,MATCH(Value,BegColumn,True/False))

Use this in your spreadsheet:
=INDEX($A:$A,MATCH($H6,$C:$C,0))
 
Hi ,

Another option ; you can change the order of the headers in I5 and J5.

Narayan
 

Attachments

  • vlookupformula.xlsx
    10.2 KB · Views: 6
Back
Top