Removing the #N/A Error and the 0 value that is returned in VLOOKUP

coltonspe

New Member
Joined
Nov 21, 2012
Messages
9
Hi,

I currently have the following VLookup formula looking up info from another table:

=IFERROR(VLOOKUP($D$7,Table1,5,FALSE)," - ")

And It's great when there is no text in the cell or if the unique lookup value doesn't exist. However, when the field is blank that it is trying to lookup, it inserts a "0" and I don't want that. I want it to input the same " - " as above.

I've tried researching it to no avail.

I hope that makes sense. Any help is greatly appreciated. BTW, Happy Holidays!

Thanks in advance
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Try
Code:
=IF(ISERROR(VLOOKUP($D$7,Table1,5,FALSE))," - ",VLOOKUP($D$7,Table1,5,FALSE))
 
Upvote 0
Try this -

"=IF(VLOOKUP(D7,Table1,5,0)=0,"-")"

Hope this helps ...Muz :)
 
Upvote 0

Forum statistics

Threads
1,216,119
Messages
6,128,947
Members
449,480
Latest member
yesitisasport

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