Hello, I need to group a list based on three different parameters, I have only been able to use List Group Key but it only works once, one recommendation.
This is really a data management question.
My preferred way in this instance:
What’s nice about this is that you don’t have to worry about recursion or nesting functions to a depth that matches the number of parameters you’re using. The number of parameters can be 1, 2, or 200 and it will work.
However, if you’re going to want to pull one of those parameters out after the fact, it may be faster to utilize a recursive function.
1 Like
Try the method I indicated above as it removes the sequential function issue and will produce a readily reviewable sequence of unique values.
Look closer. you’ve missed a string.join after the list.transpose. Don’t skip anything or you’ll get bad results.
1 Like