Hello there!
Is it possible to route lists according to it's 2nd element? Let's say I have two lists, 10 1 5 and 11 2 7. What I need to do is route them on different outputs, but the second element of the list is the key element which tells the routing object where to output the list.
Seems like a very simple problem, but I couldn't find a solution.
Thanks for your help!
-
Route list
-
You can just reorder the list with a message box:
(list)
|
[$2 $1 $3(
|
[route 1 2 3 4] -
Thanks, Maelstorm. Nice and elegant solution, as usual