How do I make #DIV/0! error message go away?

Y

yeto

I have the following function in cell C86:

=(B86-B87)/ABS(B87)

B86 value = .04
B87 value = 0

I am getting the following error message in cell C86: #DIV/0!

How can I make the error message go away and in what cell would I plac
the new function/code?

Thanks in advance for any help,
yet
 
C

Claus Busch

Hi,

Am Thu, 4 Jul 2013 11:08:49 +0100 schrieb yeto:
I have the following function in cell C86:

=(B86-B87)/ABS(B87)

B86 value = .04
B87 value = 0

I am getting the following error message in cell C86: #DIV/0!

try:
=IFERROR((B86-B87)/ABS(B87),"")
or
=IF(B87=0,"",(B86-B87)/ABS(B87))


Regards
Claus B.
 

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