This question isnt about any project or db I am working on. Its more about can this be done.
Lets say I had to do the following:
1) I have a range of numbers from 1 - 10
2) I have to preform a task where I can choose any amount of them from that range(no dups)
Lets say I choose 3, 4, 7, 8
3) I then have to take those four numbers and arrange them in sets of 3(no dups)
4) The result has to include every possible way those four numbers can be used in a set of three like below.
3, 4, 7
3, 4, 8
3, 7, 8
4, 7, 8
Now, the result only had to produce what you see above without the need of examining it further. In otherwards; 3, 4, 7 could also be like this:
(3, 4, 7) , (3, 7, 4) , (4, 3, 7) , (4, 7, 3) , (7, 3, 4) , (7, 4, 3)
Is this something that can be done with Access coding?
Lets say I had to do the following:
1) I have a range of numbers from 1 - 10
2) I have to preform a task where I can choose any amount of them from that range(no dups)
Lets say I choose 3, 4, 7, 8
3) I then have to take those four numbers and arrange them in sets of 3(no dups)
4) The result has to include every possible way those four numbers can be used in a set of three like below.
3, 4, 7
3, 4, 8
3, 7, 8
4, 7, 8
Now, the result only had to produce what you see above without the need of examining it further. In otherwards; 3, 4, 7 could also be like this:
(3, 4, 7) , (3, 7, 4) , (4, 3, 7) , (4, 7, 3) , (7, 3, 4) , (7, 4, 3)
Is this something that can be done with Access coding?