Skip to main content
Hello Commnity,

 

How can I fix the following formula to not show #.Error! when denominator is 0?

 

field1__c/Field2__c

 

thank you for any help in advance.
5 件の回答
  1. 2016年9月16日 17:47

    Then this:

    IF(

    OR(

    ISBLANK(Field2__c),

    Field2__c = 0

    ), 1 ,

    field1__c/ Field2__c

    )

0/9000