View Categories

Multi select dropdown in Form Rules

< 1 min read

Problem Statement: If we have three multi select dropdown values like A,B and C.

Rules Configured:
  1. If value selected is A then set value to 10
  2. If value selected is A and B then set value to 20
  3. If value selected is A, B and C then set value to 30
The first rule will work as expected but the second rule and the third will not work as expected.

Solution: If this is the use case then the following can be suggested as workaround:

1)Use string values instead of dropdown.
2)If multi select dropdown is only required then the dropdown should have all the combinations as dropdown values like the following:
  1. A
  2. B                  
  3. C                
  4. A and B                 
  5. A and C
  6. B and C                                   
  7. A,B and C              



Scroll to Top