Return Empty Cell/Blank

  • Thread starter Thread starter Zach
  • Start date Start date
Z

Zach

I am looking for a way to return an empty cell when the conditions of a
formula are false.

=IF(A1>0,(A1+9))

This formula is in a given cell, say B1. If A1 is empty I want B1 to stay
empty also. I do not want to return #NA or FALSE. Is there a way this may be
accomplished??

Thanks,

Zach
 
=IF(LEN(A1)=0,"",A1+9)

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 

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