Ok, I need some help setting up conditions. There’s probably an obvious way to do this, but I’m not seeing it. Here’s the deal.
I have two Models (A and on different objects. Both have a multipicklist field called List__c. We’ll call them ListA and ListB
When a user changes ListA, I need to set a condition on B such that if any of the values of ListB for rows in B are in ListA, those rows will pass the condition.
For example:
ListA is set to Apple;Orange
The Object B has rows:
Row. ListB
- Apple;Orange
- Orange
- Banana;Lemon
- Orange;Lemon
I’ve been trying to use a ‘field from another model’ condition, but both ‘includes’ and ‘is in’ don’t seem to work the way I want.
Do I have to use a ‘multiple specified values’ condition and inject the value every time it’s changed?