vlookup returning 0 instead of blank

bucci35

Active Member
Joined
Jul 6, 2002
Messages
350
Office Version
  1. 365
Platform
  1. Windows
Hi,
I have the following formula that is returning a 0 when the item can be found but the second cell over is blank. I want it to return blank.

IF(ISERROR(VLOOKUP(C7,Sheet2!$D$3:$H$5000,2,)),"",(VLOOKUP(C7,Sheet2!$D$3:$H$5000,2,0)))

I want this to return a blank when the item in C7 can't be found PLUS if the item in C7 can be found but the second cell over is blank.
Any ideas what I'm doing wrong here??

Thanks,
dan
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
I'm using Excel 2010 and it returns values

See post #7, the last formula, reproducing here:
Rich (BB code):
=IFERROR(IF(VLOOKUP($C7,Sheet2!$D$3:$H$5000,2,0)="","",
   VLOOKUP($C7,Sheet2!$D$3:$H$5000,2,0)),"")

Additionally, if the values are text values...
Rich (BB code):
=IFERROR(T(VLOOKUP($C7,Sheet2!$D$3:$H$5000,2,0)),"")
 
Upvote 0
OOPS, I must have typed an error, you are absolutely correct, it does work!!!
Thank you so much for your help, you are a life saver!!!!
Have a great day....
Dan
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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