You need to sign in to do that
Don't have an account?
Formula field to update a checkbox
I have a percentage field box with an API name field of BG_CHBX_06__c, and I want to create a separate checkbox to default to TRUE if the percent is greater than 75%. Can someone help me with the correct syntax? Thank you! API Field Name Field Type BG_CHBX_06__c Percent BG_CHBX_06_VALUE__c Checbox
Create BG_CHBX_06_VALUE__c field has formula field, return type is checkbox.
after that use this formula,
IF(BG_CHBX_06__c > 0.75,True,false)
thanks
All Answers
Create BG_CHBX_06_VALUE__c field has formula field, return type is checkbox.
after that use this formula,
IF(BG_CHBX_06__c > 0.75,True,false)
thanks