using a vlookup, can i use isblank to show an empty cell

S

Sandy

I am trying to create an excel solution using a vlook up, but in the formula
cell i would like to cell to be blank if nothing has been entered in the
reference cell

Thanks
Sandy
 
L

L. Howard Kittle

Hi Sandy,

Try this format with ranges to suit your sheet.

=IF(ISNA(VLOOKUP(B2,$H$4:$I$18,2,FALSE)),"",VLOOKUP(B2,$H$4:$I$18,2,FALSE))

HTH
Regards,
Howard
 
B

Biff

Hi!

A1 = lookup value (reference cell)

Try this:

=IF(A1="","",your_vlookup_formula_here))

Biff
 
S

Sandy

Hi Trevor,

Thanks very much for the solution, it worked a treat

Thanks Again
Sandy
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top