Anybody, please help me. I am not good with VBA macros but I need to do a complete enumeration of number permutations 
Here's my problem.
I have 8 objects--1, 2, 3, 4, 5, 6, 7 and 8. Each "solution" must contain all 8 objects, but the order matters. I need a macro that can generate all of these possible permutations.
Additionally, each of the objects need to be placed in a separate cell. It should look like this, where each row is a "solution:
<tbody>
</tbody>
And that list would continue until:
<tbody>
</tbody>
Please help me. I am so clueless as to what I need to do.
Thank you to all the kind souls out there.)
Here's my problem.
I have 8 objects--1, 2, 3, 4, 5, 6, 7 and 8. Each "solution" must contain all 8 objects, but the order matters. I need a macro that can generate all of these possible permutations.
Additionally, each of the objects need to be placed in a separate cell. It should look like this, where each row is a "solution:
1st Object | 2nd Object | 3rd Object | 4th Object | 5th Object | 6th Object | 7th Object | 8th Object |
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
1 | 2 | 3 | 4 | 5 | 6 | 8 | 7 |
1 | 2 | 3 | 4 | 5 | 7 | 6 | 8 |
1 | 2 | 3 | 4 | 5 | 7 | 8 | 6 |
<tbody>
</tbody>
And that list would continue until:
8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 |
<tbody>
</tbody>
Please help me. I am so clueless as to what I need to do.