$DIV/0!

  • Thread starter Darts via OfficeKB.com
  • Start date
D

Darts via OfficeKB.com

If I want to divide 2 cells to get an average and there is no # in cell yet
the cell where the fomula reads $DIV/0! I would like that cell to be blank.
how do I write the formula.

my formula reads =(J5/L5) my answer in that cell reads $DIV/0! since i do
not have any data yet

thanks
 
D

Dave Peterson

=if(l5=0,"",j5/l5)
or

Darts via OfficeKB.com said:
If I want to divide 2 cells to get an average and there is no # in cell yet
the cell where the fomula reads $DIV/0! I would like that cell to be blank.
how do I write the formula.

my formula reads =(J5/L5) my answer in that cell reads $DIV/0! since i do
not have any data yet

thanks
 
D

Darts via OfficeKB.com

Thanks Dave works great!!!!!!

Dave said:
=if(l5=0,"",j5/l5)
or
If I want to divide 2 cells to get an average and there is no # in cell yet
the cell where the fomula reads $DIV/0! I would like that cell to be blank.
[quoted text clipped - 7 lines]
 
F

Fayyaadh Ebrahim

Thanks Dave works great!!!!!!

Dave said:
=if(l5=0,"",j5/l5)
or
If I want to divide 2 cells to get an average and there is no # in cellyet
the cell where the fomula reads $DIV/0!  I would like that cell to beblank.
[quoted text clipped - 7 lines]

You can also use:

IF(ISERROR(J5/L5),"",J5/L5)
 

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

Similar Threads

Newbie Help - IF Yes No Function 0
#div/0 error 2
Div 0 help 1
Extract name, address and ph# 8
Ignoring Blank cells 9
#DIV/0! error 1
Need "Div/0" Average Relief ... 4
Find Average w/ #DIV/0! in Cell 6

Top