IF(Cycle_Plan_Target_vod__c.Account_Record_Type_ID_vod__c = "012E0000000Ktus", Cycle_Plan_Target_vod__c.Actual_Calls_vod__c:SUM*4, Cycle_Plan_Target_vod__c.Actual_Calls_vod__c:SUM)
It appears as though the "If" portion has to refer to a summarizable field...if that is the case, I think I'll have to use a custom object and populate that based on the formula above in order to report as needed.
Thanks...for any assistance!
2 respuestas
I think you might have to move some of the formula onto the object itself in the way of a Formula(Number) field like either : IF(Cycle_Plan_Target_vod__c.Account_Record_Type_ID_vod__c = "012E0000000Ktus", 1, NULL)
or:IF(Cycle_Plan_Target_vod__c.Account_Record_Type_ID_vod__c = "012E0000000Ktus", Cycle_Plan_Target_vod__c.Actual_Calls_vod__c * 4 , Cycle_Plan_Target_vod__c.Actual_Calls_vod__c)