VLOOKUP Reverse the table order

dkubiak

Board Regular
Joined
May 17, 2004
Messages
137
Office Version
  1. 2013
Platform
  1. Windows
I am building some automation into an existing workbook that is used to track projects. The status of a phase is in column D, but the name of the phase is in column A. I want to build a VLOOKUP that looks for the phase "In Process" in column D and returns the value in the same row in column A.

Is this "reverse" VLOOKUP possible?
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
I am building some automation into an existing workbook that is used to track projects. The status of a phase is in column D, but the name of the phase is in column A. I want to build a VLOOKUP that looks for the phase "In Process" in column D and returns the value in the same row in column A.

Is this "reverse" VLOOKUP possible?
Try it like this...

=INDEX(A2:A100,MATCH("In Process",D2:D100,0))

Better to use a cell to hold the lookup value...

F2 = In Process

=INDEX(A2:A100,MATCH(F2,D2:D100,0))
 
Upvote 0
Thanks. I'm going to try the INDEX function.

I did, however, use a not-so-sophisticated work around:

Column E = Column A, then hid Column E.

VLOOKUP("In Process",D:E,2,FALSE)

It works, but I think I'll still try the INDEX.
 
Upvote 0
Thanks. I'm going to try the INDEX function.

I did, however, use a not-so-sophisticated work around:

Column E = Column A, then hid Column E.

VLOOKUP("In Process",D:E,2,FALSE)

It works, but I think I'll still try the INDEX.
Yes, the INDEX version is the way to go.

Thanks for the feedback! :cool:
 
Upvote 0

Forum statistics

Threads
1,224,532
Messages
6,179,388
Members
452,908
Latest member
MTDelphis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top