Thread: iserror problem
View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
[email protected] stephen.ditchfield@gmail.com is offline
external usenet poster
 
Posts: 24
Default iserror problem

On Friday, October 11, 2013 5:09:44 PM UTC+11, Claus Busch wrote:
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


Thank You Claus
much appreciated, all fixed