Skip to main content
Hey, I'm putting together a fomular field and must be missing something. I have a multiple IF statement that works when they are independent but when I have tried to combine the second IF section isnt calculating? 

 

I'm not sure what I'm missing but I'm sure its something obvious!

 

 

IF(

AND(

SBQQ__Product__r.Include_in_PEPA__c,

NOT(ISBLANK(SBQQ__Group__c))),

(SBQQ__PackageTotal__c/SBQQ__Group__r.SBQQ__SubscriptionTerm__c *12)/ SBQQ__Quantity__c,

IF(

SBQQ__Product__r.Include_in_PEPA__c,

(SBQQ__PackageTotal__c/ SBQQ__Quote__r.SBQQ__SubscriptionTerm__c *12)/SBQQ__Quantity__c,0))

 

 
4 answers
  1. Jun 12, 2017, 9:26 AM
    got it, just relaised i was doing something very stupid indeed. Essentially i was referencing the object rather than the sepcific field in the object. Dim moment! Thanks for your help
0/9000