Add condition to VLOOKUP

sharky12345

Well-known Member
Joined
Aug 5, 2010
Messages
3,426
Office Version
  1. 2016
Platform
  1. Windows
I have this VLOOKUP and I want to add a condition;

=IFERROR(VLOOKUP(B3,Teams!$B$28:$C$50,2,FALSE),"")

The condition is that if the value in column C is "NEW" then I need the cell to be blank. As you can see, I have worked out how to add an error trap but don't know how to add an extra 'IF' condition, if in fact that is possible?
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Try

=IFERROR(IF(VLOOKUP(B3,Teams!$B$28:$C$50,2,FALSE)="NEW","",VLOOKUP(B3,Teams!$B$28:$C$50,2,FALSE)),"")
 
Upvote 0
Another way...
=IF(VLOOKUP(B3,Teams!$B$28:$C$50,2,FALSE)="NEW","",iferror(VLOOKUP(B3,Teams!$B$28:$C$50,2,FALSE),""))
 
Upvote 0
Another way...
=IF(VLOOKUP(B3,Teams!$B$28:$C$50,2,FALSE)="NEW","",iferror(VLOOKUP(B3,Teams!$B$28:$C$50,2,FALSE),""))
Hi Ford
I don't think that is the same. If the VLOOKUP returns something other than an error then your formula does what was asked, but if the VLOOKUP results in an error, then the OP's original formula returns "", whereas yours returns an error.
 
Upvote 0

Forum statistics

Threads
1,225,743
Messages
6,186,773
Members
453,370
Latest member
juliewar

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