Sort By Index

I am trying to take a created List and Sort by Index of each Sub list. I can get the result by GetItemAtIndex, but need to repeat for each Index. So all the Index at 0 is a list, all the Index at 1 is a list and so forth. The list could change in amounts, in this case there are 4 per sub list, but could change to less or more. Hope I described this correctly and the screen shot helps.

List.Transpose is what you want.

You may have to play around with the Level@ input and/or throw in a flatten at a specific level first as your list is double nested (actually, using list.join instead of list create might fix that too).

1 Like

You da man! Final results is to use this data for inputs into a Key Schedule. Thanks.
List.Transpose

1 Like