IF(ISBLANK(Business_Owner_I__c ),0,1)+
IF(ISBLANK(BusinessApprover__c),0,1)+
IF(ISBLANK(BusTotalMgt__c ),0,1)+
IF(ISBLANK(Technology_Approver__c),0,1)+
IF(ISBLANK(Technical_Decision_Maker__c),0,1)+
IF(ISBLANK(Technical_Decision_Maker__c),0,1)+
IF(ISBLANK(FinanceApprover__c),0,1)+
IF(ISBLANK(Finance_Owner__c),0,1)+
IF(ISBLANK(Financial_Decision_Maker__c ),0,1)
/9
6 个回答
This might just be an order of operations issue (divide happens before add) ... before I overthink this could you let me know if this works?
(
IF(ISBLANK(Business_Owner_I__c ),0,1)+
IF(ISBLANK(BusinessApprover__c),0,1)+
IF(ISBLANK(BusTotalMgt__c ),0,1)+
IF(ISBLANK(Technology_Approver__c),0,1)+
IF(ISBLANK(Technical_Decision_Maker__c),0,1)+
IF(ISBLANK(Technical_Decision_Maker__c),0,1)+
IF(ISBLANK(FinanceApprover__c),0,1)+
IF(ISBLANK(Finance_Owner__c),0,1)+
IF(ISBLANK(Financial_Decision_Maker__c ),0,1)
)
/9