VLOOKUP Function (Hide Zero Value)

  • Thread starter Thread starter Jay
  • Start date Start date
J

Jay

Hello,

I use a Lookup function on my spreadsheets, but some
values are zeros. How can I change this formula:

=VLOOKUP($B59,INDIRECT($B51),32,FALSE)

So that if it results in a zero, I see nothing?

Thank you,
Jay Gustafson
 
Jay,

The most straightforward thing I can think of is to use an if statement such as:

=if(VLOOKUP($B59,INDIRECT($B51),32,FALSE)=0,"",VLOOKUP($B59,INDIRECT($B51),32,FALSE))

It's ugly and verbose, but should work.

Art
 
Art,

It most definitely is ugly & verbose, but it most
definitely works. Thank you very much for taking the time
to solve this. I appreciate it.

Jay
 

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