Mapping list of doors, from sorted string

Is this possible? And how? :slight_smile: Thx in advantage

Hope this make any sense :slight_smile:

If you want the order of the values reset to match the original order of the elements you can group the indexes of the element list, flatten it and then use it to sort the flattened list of values by key (1).

Alternatively, if you want the elements to follow the order of the list of values, you can use GroupByKey (2)

Hope this helps,
Thomas

  1. solution kicks ass :slight_smile: Thx a lot… :grinning:
1 Like