
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 件の回答
Like this =
IF(
AND(
ISBLANK(Actual_ECPP__c),
ISBLANK(ECPP__c)
),
NULL,
Adjusted_Amount__c/BLANKVALUE(Actual_ECPP__c, ECPP__c)
)