Hi all,
I have features containing two lists obtained from Matcher. First list named _fromPolygon contains just yes/no elements. Second one named _SYMBOL has values of integer type. I need to select minimal value from _SYMBOL but based on other list. If in _fromPolygon I don't have 'no', then I ned to simply minimal _SYMBOL value. If _fromPolygon contains 'no' values, then I need to get minimal _SYMBOL value where corresponding _fromPolygon is 'no'.
Example:
Feature | _fromPolygon | _SYMBOL | wanted value
1 yes, no, yes, no, no 2, 9, 2, 5, 3 3
2 yes, yes, yes, yes 2, 3, 1, 5 1
3 no, no, no, no, no, no 2, 3, 2, 5, 3 2
I combined ListSorter and ListSearcher but allways get lost when trying to merge two lists in order to get Feature 1 situation done.
What are your suggestions and ideas for achieving this? I had few, but all gone bad!
Thanks!