View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default if zero, then return blank/empty

Ooops!

or if it is zero, do not show??


Disregard this formula:

=IF(COUNT(F1,-(F1<0))=2,F1/900,"")


--
Biff
Microsoft Excel MVP


"T. Valko" wrote in message
...
=IF(COUNT(F1,-(F1<0))=2,F1/900,"")

--
Biff
Microsoft Excel MVP


"Teethless mama" wrote in
message ...
=IF(AND(ISNUMBER(F1),F1<0),F1/900,"")

"cls" wrote:

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??