formula checkbox referencing contact field problem
I am a newbie trying to check a formula checkbox if one of two names or both names are in a contact field list. Why isn't this working?
=IF(CONTAINS("Name1", contact@row), OR(CONTAINS("Name2", contact@row), 1, 0))
Best Answer
-
Think of the OR function as the "logical statement" portion of the IF and both of the CONTAINS functions are "logical statements" of the OR.
OR(CONTAINS(..........), CONTAINS(..........))
=IF(OR(...........................), 1, 0)
=IF(OR(CONTAINS(..........), CONTAINS(..........)), 1, 0)
Answers
-
Think of the OR function as the "logical statement" portion of the IF and both of the CONTAINS functions are "logical statements" of the OR.
OR(CONTAINS(..........), CONTAINS(..........))
=IF(OR(...........................), 1, 0)
=IF(OR(CONTAINS(..........), CONTAINS(..........)), 1, 0)
-
Thanks so much, Paul!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!