are elements of a multiselect field in another multiselect field?
Hi all,
how can i find out if all elements of a multiselect field are contained in another multiselect field?
Example 1:
Multicell Field "Value1" has: "a d"
Multicell Field "Value2" has: "a b c d"
Answer: true, all values from "Value 1" are in "Value 2"
Example 2:
Multicell Field "Value1" has: "a d"
Multicell Field "Value2" has: "a b c e"
Answer: false, not all values from "Value 1" are in "Value 2"
Thank you and have a nice evening, Joachim
Answers
-
you can create an additional column that combines the 2 multi select column:
=JOIN([multicell1]@row:[multicell2]@row, CHAR(10))
Your formula to evaluate them would be:
=IF(AND(COUNTM([multicell2]@row) = COUNTM(multicellcombined@row), COUNTM(multicellcombined@row) > 0), 1, 0)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.5K Get Help
- 448 Global Discussions
- 145 Industry Talk
- 481 Announcements
- 5.1K Ideas & Feature Requests
- 85 Brandfolder
- 152 Just for fun
- 73 Community Job Board
- 492 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 304 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!