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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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
 
Hi!

A1 = lookup value (reference cell)

Try this:

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

Biff
 
Back
Top