Avoiding returning a 0 when no data in cell

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

I have worked out the formula I need to use (with help from someone
from this group).

However how do I stop it returning a 0 when no data is present in the
cell?

My formula:

=VLOOKUP($G37,Staffing!$C:$AL,36,FALSE)

Many thanks

Steve
 
=if(vlookup(...)="","",vlookup(...))

You may want to suppress the #n/a error, too:

=if(iserror(vlookup(...)),"",if(vlookup(...)="","",vlookup(...)))
 

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

Back
Top