Problem Statement: If we have three multi select dropdown values like A,B and C.
Rules Configured:
- If value selected is A then set value to 10
- If value selected is A and B then set value to 20
- 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:
- A
- B
- C
- A and B
- A and C
- B and C
- A,B and C
