Skip to main content
I've created a formula field called Adjust Mailpieces, I want the calculation logic to be as follows

 

If Actual eCPP field is blank then Adjust Mailpieces = Adjusted Amount/eCPP

 

Otherwise

 

If Actual eCPP is NOT BLANK then Adjusted Mailpieces = Adjusted Amount/Actual eCPP
3 件の回答
  1. 2018年10月25日 19:14

    Like this = 

    IF(

    AND(

    ISBLANK(Actual_ECPP__c),

    ISBLANK(ECPP__c)

    ),

    NULL,

    Adjusted_Amount__c/BLANKVALUE(Actual_ECPP__c, ECPP__c)

    )

0/9000