Slider range position sequences

Hi guys,

How would one generate a list of a certain combination of slider positions? Lets say as per my image I would like to have a combination such as where the sequence generated for each range is as such:

(2,1,1) (2,2,1) (2,3,1) (2,3,2) (2,3,3) (2,3,4) (2,3,5) etc… then once reaching the last digit the first one would turn to higher number like this:

(2,1,1) (3,2,1) (3,3,1) (3,3,2) (3,3,3) (3,3,4) (3,3,5) etc, until all combinations is created in this manor and then have all three columns.

I have managed to do the list for the x part of (x,y,z), but not sure how to achieve the rest.

I made a mock up of data on excel of how it should be in the end:

|2|1|1|
|2|2|1|
|2|3|1|
|2|3|2|
|2|3|3|
|2|3|4|
|2|3|5|
|2|3|6|
|2|3|7|
|2|3|8|
|3|1|1|
|3|2|1|
|3|3|1|
|3|3|2|
|3|3|3|
|3|3|4|
|3|3|5|
|3|3|6|
|3|3|7|
|3|3|8|
|4|1|1|
|4|2|1|
|4|3|1|
|4|3|2|
|4|3|3|
|4|3|4|
|4|3|5|
|4|3|6|
|4|3|7|
|4|3|8|
|5|1|1|
|5|2|1|
|5|3|1|
|5|3|2|
|5|3|3|
|5|3|4|
|5|3|5|
|5|3|6|
|5|3|7|
|5|3|8|

Thank you for your help in advance!

Regards,

Jonas Blazinskas

Do you want something like this?
solution.gh (8.3 KB)

This is how I have done it, not sure if there is an easier way to achieve this?solution.gh (12.4 KB)

Not exactly as I am not trying to achieve a complete cross product, It’s more like a snap shot in time of where each slider x,y,z would be positioned once a slider movement is made. The first slider x position is selected so lets say 1 then it goes through all the possible cross products of the slider y, then once it reaches the end which is 3 it keeps repeating 3 whilst the z slider gets it’s all cross products completed vs slider x. And once all of this is finished the process is back to the start and slider x moves up to the next position to proceed the same logic.