Stopping display of "FALSE"

  • Thread starter Thread starter vinnie123
  • Start date Start date
V

vinnie123

I'm sure it is a really straightforward problem.

I have a sheet with a lot of data generated form formulas, mainly
VLOOKUP and IF with output being whole numbers. How can I stop the word
"FALSE" from appearing in cells with no valid data, just leaving those
cells blank.

Regards, Vinnie.
 
Normally, you add an additional IF to your formula, to test for this condition.

Something like =IF(A1="","",A1*B1)
=IF(A1="","",VLOOKUP(A1,Sheet2!A1:D250,3,FALSE)
or something to that effect. It all depends on what it is you want to block
out. I suggest you post your VLOOKUP formula, then we can assist you.
 

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