If(vlookup or formula

Jon3sy

Board Regular
Joined
Jan 30, 2013
Messages
100
Office Version
  1. 365
Hi there Gurus

I am trying to write a formula that is an if statement but also a vlookup and OR statement - so depending on what is in cell B6 (2 choices), if B6= choice 1 then I want my formula to vlookup the value in F21 in a table range and then returning value from column 9, OR if B6 = choice 2 then vlookup a different reference B21 in same table range and return value from column 10, and if B6 is blank leave blank.
So this was my attempt ...
if(or($b$6="R",vlookup($f$21,$F$2:$O$28,9,false),if($b$6="S",vlookup($b$21,$F$2:$O$28,10,false),"",)))))

Hope someone can make sense of my requirement
Cheers
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
you wouldn't use OR for this, you'd use when you want the same results if any condition is met
this the one: =IF($B$6="R",VLOOKUP($F$21,$F$2:$O$28,9,FALSE),IF($B$6="S",VLOOKUP($B$21,$F$2:$O$28,10,FALSE),""))
 
Upvote 0
Solution
Wonderful worked perfectly, I was over-thinking it (as usual) 🤣
Thank you so much 😊
 
Upvote 0

Forum statistics

Threads
1,215,136
Messages
6,123,251
Members
449,093
Latest member
Vincent Khandagale

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