Vlookup question

wazupsc

New Member
Joined
Jul 19, 2010
Messages
8
i AM USING THE VLOOKUP FUNCTION TO LOOK UP A DESCRIPTION. iF THERE IS NO VALE ENTERNED IN THE VLOOKUP CELL, I WOULD LIKE THE DESCRIPTION TO BE BLANK RATHER THEN SHOWING #N/A. BUT WOULD LIKE THE FORMULAR TO REMAIN. IS THAT POSSIBLE?
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Welcome to the board...

Here's basic syntax, depending on which version of XL you have..

XL2003 or earlier

=IF(ISNA(VLOOKUP(...)),"",VLOOKUP(...))

XL2007 or higher

=IFERROR(VLOOKUP(...),"")


Hope that helps.
 
Upvote 0
Please don't type your question in capitals it represents your shouting at people.

You can use an IF statement around the VLOOKUP to say if the cell has a value then use the VLOOKUP at the true element and place in no text if false, follow what I have done in Red

=IF(B2>0,VLOOKUP(B2,TableRange,Column,False),"")
 
Upvote 0

Forum statistics

Threads
1,225,072
Messages
6,182,697
Members
453,132
Latest member
nsnodgrass73

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