vlookup, refer second and return third without helper cells

Nova1979

Board Regular
Joined
Feb 4, 2020
Messages
111
Office Version
  1. 2010
Platform
  1. Windows
Hello ladies and gents,

I am sure this has been asked a thousand time.

This formula is placed in BAG3:AS and then copied down

=VLOOKUP(D2,AABD!D:G,4,FALSE). If found, this then needs to check the relative row in AABD:G for SV (text specific), if true, return the value in that same row (number) in AABD:I

This formula as mentioned above will be placed in BAG3:AS

Any help is appreciated

Thanks
 

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
=VLOOKUP(D2,AABD!D:G,4,FALSE). If found, this then needs to check the relative row in AABD:G for SV (text specific
Vlookup is looking down column D to match D2 for a value in column G, the 4 in the vlookup , so then you want to look again at column G for SV ?
which unless d2 is SV , then it wont be true - AM i missing something ?
 
Upvote 0
Maybe
Excel Formula:
=IF(VLOOKUP(D2,AABD!D:G,4,FALSE)="SV",VLOOKUP(D2,AABD!D:I,5,FALSE),"")
 
Upvote 0
Solution
Sorry it’s taken so long to reply.
Fluffs formula works for me
Thanks for both of your input
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,492
Messages
6,125,115
Members
449,206
Latest member
burgsrus

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