Skip to main content
6 Antworten
  1. 8. Okt. 2019, 19:20

    Try this = 

    IF(

    OR(

    AND(

    Package_Product__c = "Yes",

    NOT(ISBLANK(Opportunity.SBQQ__PrimaryQuote__c))

    ),

    BLANKVALUE(Opportunity.BESP_Grand_Total__c, 0) = 0

    ),

    NULL,

    ROUND(Opportunity.Amount * (ASP_Total__c / Opportunity.BESP_Grand_Total__c), 2)

    )

0/9000