You need to sign in to do that
Don't have an account?

Checkbox - "Compiled formula is too big to execute"
I'm using many formulas like that:
IF(Payment_01__c = TRUE, 1, 0)
+ IF(Payment_02__c = TRUE, 4, 0)
+ IF(Payment_03__c = TRUE, 16, 0)
Payment is a checkbox. There are many other checkbox in the object with the same formula. And there is a Total that is the final sum of all thing. But I'm receiving this message:
Error: Compiled formula is too big to execute (5,371 characters). Maximum size is 5,000 characters
How can I solve it?
Hi Marcio,
Follow this link: https://help.salesforce.com/HTViewSolution?id=000005456&language=en_US
Madhan Raja M
It have a value to each checkbox. If the person check the "Payment_01__c", the value "1" will be showed on the visualforce page. If the person check the "Payment_02__c", the value "4" will be showed instead.
And there is a final result that is a sum of all checked values. There are many checkboxes in the object.