how to hide #DIV/0!

  • Thread starter Thread starter chicrocker21
  • Start date Start date
C

chicrocker21

im having a problem with my formula here..my formula is d8/d9, but there is
no values yet for those cells and #DIV/0! appears,but i want the worksheet to
look clean..how can i hide #DIV/0! but the formula remains. thanks!
 
Or, if you want to flag the divide error if you genuinely have a zero in D9,
but leave the result blank if D9 is empty, try
=IF(D9="","",D8/D9)
 
Back
Top