if zero, then return blank/empty

C

cls

Column F is sometimes empty. Sometimes does contain a value. Column H
contains the formula = F1 / 900. F2 / 900. F3 / 900. ... Currently, if a
row in column H refers to a blank row in column F, I get a return value of
zero. Any way to write the formula so that if row F is empty/blank, then I
get a blank/null return value?? or if it is zero, do not show??
 
C

cls

=IF(F1=0,"",F1/900) This one worked best for my simple purposes/mind. & is
the most straight forward. One that I can also easily remember in future.
Sebastian's: =IF(ISBLANK(F1),"",F1/900) worked also. Thanks to all!
 

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

Top