Skip to main content

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)

4 answers
  1. Apr 12, 2024, 1:33 PM

    ++ @Divya Chauhan 

     

    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

0/9000