ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   How do you write an if statement that replaces #DIV/0! with 0 (https://www.excelbanter.com/excel-discussion-misc-queries/76330-how-do-you-write-if-statement-replaces-div-0-0-a.html)

caliskier

How do you write an if statement that replaces #DIV/0! with 0
 

Hello,

My title asks my question, but we have a link that pulls in an answer
from another sheet that is #div/0! on the other sheet, but I can't
change the data on the sheet that has the #div/0! error. So I am
trying to write an if statment that gives 0 as a result instead of the
#div/0! error. Any ideas?


--
caliskier
------------------------------------------------------------------------
caliskier's Profile: http://www.excelforum.com/member.php...o&userid=25887
View this thread: http://www.excelforum.com/showthread...hreadid=520832


Bob Phillips

How do you write an if statement that replaces #DIV/0! with 0
 
=IF(ISERROR(Sheet2!A1),"",Sheet2!A1)

--

HTH

Bob Phillips

(remove nothere from the email address if mailing direct)

"caliskier" wrote
in message ...

Hello,

My title asks my question, but we have a link that pulls in an answer
from another sheet that is #div/0! on the other sheet, but I can't
change the data on the sheet that has the #div/0! error. So I am
trying to write an if statment that gives 0 as a result instead of the
#div/0! error. Any ideas?


--
caliskier
------------------------------------------------------------------------
caliskier's Profile:

http://www.excelforum.com/member.php...o&userid=25887
View this thread: http://www.excelforum.com/showthread...hreadid=520832




Trevor Shuttleworth

How do you write an if statement that replaces #DIV/0! with 0
 
=IF(ISERROR(cell_ref),0,cell_ref)

Regards

Trevor


"caliskier" wrote
in message ...

Hello,

My title asks my question, but we have a link that pulls in an answer
from another sheet that is #div/0! on the other sheet, but I can't
change the data on the sheet that has the #div/0! error. So I am
trying to write an if statment that gives 0 as a result instead of the
#div/0! error. Any ideas?


--
caliskier
------------------------------------------------------------------------
caliskier's Profile:
http://www.excelforum.com/member.php...o&userid=25887
View this thread: http://www.excelforum.com/showthread...hreadid=520832




Biff

How do you write an if statement that replaces #DIV/0! with 0
 
Hi!

Try this:

A1 = #DIV/0!

=IF(ISERROR(A1),0,your_formula_here))

Biff

"caliskier" wrote
in message ...

Hello,

My title asks my question, but we have a link that pulls in an answer
from another sheet that is #div/0! on the other sheet, but I can't
change the data on the sheet that has the #div/0! error. So I am
trying to write an if statment that gives 0 as a result instead of the
#div/0! error. Any ideas?


--
caliskier
------------------------------------------------------------------------
caliskier's Profile:
http://www.excelforum.com/member.php...o&userid=25887
View this thread: http://www.excelforum.com/showthread...hreadid=520832




Ron Rosenfeld

How do you write an if statement that replaces #DIV/0! with 0
 
On Thu, 9 Mar 2006 17:12:55 -0600, caliskier
wrote:


Hello,

My title asks my question, but we have a link that pulls in an answer
from another sheet that is #div/0! on the other sheet, but I can't
change the data on the sheet that has the #div/0! error. So I am
trying to write an if statment that gives 0 as a result instead of the
#div/0! error. Any ideas?


=IF(ERROR.TYPE(cell_ref)=2,0,A12)

The other responses will result in a 0 for any error. However, this formula
should be specific for a #DIV/0 error.


--ron

caliskier

How do you write an if statement that replaces #DIV/0! with 0
 

Thanks all, great helped alot!!


--
caliskier
------------------------------------------------------------------------
caliskier's Profile: http://www.excelforum.com/member.php...o&userid=25887
View this thread: http://www.excelforum.com/showthread...hreadid=520832


Ron Rosenfeld

How do you write an if statement that replaces #DIV/0! with 0
 
On Thu, 09 Mar 2006 19:17:14 -0500, Ron Rosenfeld
wrote:

On Thu, 9 Mar 2006 17:12:55 -0600, caliskier
wrote:


Hello,

My title asks my question, but we have a link that pulls in an answer
from another sheet that is #div/0! on the other sheet, but I can't
change the data on the sheet that has the #div/0! error. So I am
trying to write an if statment that gives 0 as a result instead of the
#div/0! error. Any ideas?


=IF(ERROR.TYPE(cell_ref)=2,0,A12)

The other responses will result in a 0 for any error. However, this formula
should be specific for a #DIV/0 error.


--ron


That should be:

=IF(ERROR.TYPE(cell_ref)=2,0,cell_ref)


--ron


All times are GMT +1. The time now is 10:09 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com