View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
daddylonglegs
 
Posts: n/a
Default Formula Question


It's probably best to suppress the errors in the first place. If you
have a formula like

=A1/B1 which gives a #DIV/0! error then you can change to

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

alternatively you can sum a range, say C1:C10, and ignore #DIV/0!
errors with

=SUMIF(C1:C10,"<#DIV/0!")


--
daddylonglegs
------------------------------------------------------------------------
daddylonglegs's Profile: http://www.excelforum.com/member.php...o&userid=30486
View this thread: http://www.excelforum.com/showthread...hreadid=535218