antonio6vieira Posted July 16, 2015 Share Posted July 16, 2015 Hi everyone. Is it possible to Combine members and a parent based on more than one state? Can anyone tell me how is this done? If not, what would be the best alternative? Thanks Link to comment Share on other sites More sharing options...
dsturrock Posted July 16, 2015 Share Posted July 16, 2015 Both member and parent have match expressions and each expression can have as many components as you want. But they must ultimately resolve to a single value. For example, you could match on a combination of priority and color. Assuming priority has a value of 1-5 and color has a value of 1-4, you could have a match expression like "Priority*10 + Color", so a green high priority (perhaps a value of 53) would only be matched with other green high priorities. To do more sophisticated matching than that you would probably need to use process logic. Perhaps put the members in a storage and use the seach to select the "best" items from that storage. Link to comment Share on other sites More sharing options...
Recommended Posts