Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In an action, I'd like to create a list of values from 5 variables into a sorted list.
Example:
var1 = -10
var2 = 0
var3 = -20
var4 = 20
var5= 10
I'd like to load a variable with a list that I can use the "pick" function against in sorted order so the above example would look like this:
varsort = -20, -10, 0, 10, 20
If the values are the same, it doesn't matter which variable gets loaded first
Any ideas?
RHARMSNY wrote:I'll petition for a rangesort() function!
I think you'd want a rangeconcat() function. The concat() function supports a sort sequence, which seems to be what you want to do here.