Nested "If formula" - returns zero when reference cell is empty

T

twlove

In cell A I can have one of three things... a blank cell, a cell value
of zero or a cell value greater than zero. Depending on which value
is in cell A1 I want the value in cell B1 to be the following:

A1 is greater than zero - B1 should =A1 plus 1

A1 is equal to zero - B1 should = 0

A1 is empty = B1 should be empty

Shown below is the nested "if formula' I wrote. The problem is when
A1 is empty a zero is displayed in B1. In this senario I want cell B1
to be blank. I know I can suppress zero values from displaying but
that affects the whole woksheet and I don't want that.


=IF(A1>0,A1+1,IF(A1=0,"0",IF(A1="","")))
 
O

okrob

In cell A I can have one of three things... a blank cell, a cell value
of zero or a cell value greater than zero. Depending on which value
is in cell A1 I want the value in cell B1 to be the following:

A1 is greater than zero - B1 should =A1 plus 1

A1 is equal to zero - B1 should = 0

A1 is empty = B1 should be empty

Shown below is the nested "if formula' I wrote. The problem is when
A1 is empty a zero is displayed in B1. In this senario I want cell B1
to be blank. I know I can suppress zero values from displaying but
that affects the whole woksheet and I don't want that.

=IF(A1>0,A1+1,IF(A1=0,"0",IF(A1="","")))

=IF(A1>0,A1+1,IF(A1="","",0))
 
B

Bob Phillips

=IF(A1>0,A1+1,IF(A1="","",IF(A1=0,A1,"")))

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

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