Skip to main content
Omar Alsharif (aboutGOLF) 님이 #Formulas에 질문했습니다

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개
  1. 2024년 4월 12일 오후 1:33

    ++ @Jeff Weller 

     

    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