VLookup For Same Value but in 2 Different Columns

USFengBULLS

Board Regular
Joined
May 7, 2018
Messages
66
Office Version
  1. 365
Platform
  1. Windows
Hello All,

I have a column of cell on one sheet that I am having lookup the description in the table in another sheet based off the status.
Basically the formula works for this =VLOOKUP(B11,'FINISH LIST'!B11:J495,6,FALSE) and its is returning the status fine, but I also need it to look into column 9 for the status there.
there are two columns on that sheet, Columns 6 & 9, that are labeled status and I need the v lookup to check both and return the status. there will never be a case where there will be a status in both column 6 and 9. I know this is wrong but it need to do this in simple form =VLOOKUP(B11,'FINISH LIST'!B11:J495,OR(6,9),FALSE). Something like that.
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Either Approved or Rejected from a drop down list...if that was what your meaning. Both strings or text
 
Upvote 0
Would something like this work:
=IFERROR(VLOOKUP(B11,'FINISH LIST'!B:G,6,FALSE),VLOOKUP(B11,'FINISH LIST'!B:J,9,FALSE))
 
Upvote 0

Forum statistics

Threads
1,215,200
Messages
6,123,612
Members
449,109
Latest member
Sebas8956

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