View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default Hide the #DIV/0! Error

One way:

Instead of

=A1/B1

use

=IF(B1=0,"",A1/B1)

In article ,
RyanH wrote:

Is there a way to not show the #DIV/0! Error in a cell? I would like to have
the cell blank instead.

Thanks in advance.