Thread: iserror problem
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Claus Busch Claus Busch is offline
external usenet poster
 
Posts: 3,872
Default iserror problem

Hi,

Am Thu, 10 Oct 2013 22:59:57 -0700 (PDT) schrieb
:

could you please show me how I can get rid of #DIV/0
with iserror
my formula is

=IF(L12=0,"",(G12/K12)/L12)


try:
=IF(OR(L12=0,K12=0),"",G12/K12/L12)
or:
=IFERROR(IF(L12=0,"",G12/K12/L12),"")


Regards
Claus B.
--
Win XP PRof SP2 / Vista Ultimate SP2
Office 2003 SP2 /2007 Ultimate SP2