I have the following X,Y Data in two Columns:
X=4,8,2,1,9 (Column A)
Y=3,5,1,7,8 (Column B)
What I need is, on the subsequent rows, all the possible rearrangements of this data.
That is, for example:
1st output:
X=4,8,2,1,9 (Column A)
Y=5,1,7,8,3 (Column B)
2nd output:
X=4,8,2,1,9 (Column...