I'm trying to create a checkbox field thats looks at two other checkbox fields from a parent object and return TRUE if any of these other checkboxs is TRUE. I tired the formulas below with no luck, if anyone can help please!
- Or ( QuoteAccount.Reseller__c, QuoteAccount.Reseller_Child__c)
- Or ( QuoteAccount.Reseller__c = TRUE, QuoteAccount.Reseller_Child__c = TRUE)
- IF ( Or( QuoteAccount.Reseller__c = TRUE, QuoteAccount.Reseller_Child__c = TRUE), TRUE, FALSE)
- IF ( QuoteAccount.Reseller__c = TRUE, TRUE, IF ( QuoteAccount.Reseller_Child__c = TRUE, TRUE, FALSE)
This Formula is syntactically correct
OR(
QuoteAccount.Reseller__c,
QuoteAccount.Reseller_Child__c
)
I would double-check the API Field Names, and also check stuff like Browser Caching, refresh, etc that could cause a valid formula to not display the expected results