Sorting multiple lists with the same order

Hey there I just wanna know if it is possible to sort more than just 1 list with the same order.
for examle I have list 1: [1,4,3,2,5] and list 2: [a,b,c,d,e] and I want to sort BOTH lists but “with” the first list. So that I get this as the result: list 1: [1,2,3,4,5] and list 2: [a,d,c,b,e] ??
Thank you :slight_smile:

Try this extension.

Use bubble sort, I have not tried but by seeing the example, I recommend it :slightly_smiling_face:

1 Like

Maybe something like this ?

5 Likes

Yea thank you that is it!!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.