I would like to generate all combination from a list a a column A I would like to return in rows/cells all value for lenght tuple = 12
I got so error because the reesult is too large to be printed.
Then I try to find a solution print by batch (example 1-20.000 / 20.001-40.000 ...etc...etc)
the formula I used is:
=arrayformula( split(
tocol(A1:A36 & "→" & transpose(
tocol(A1:A36 & "→" & transpose(
tocol(A1:A36 & "→" & transpose(
tocol(A1:A36 & "→" & transpose(
tocol(A1:A36 & "→" & transpose(
tocol(A1:A36 & "→" & transpose(
tocol(A1:A36 & "→" & transpose(
tocol(A1:A36 & "→" & transpose(
tocol(A1:A36 & "→" & transpose(
tocol(A1:A36 & "→" & transpose(
tocol(A1:A36 & "→" & transpose(
A1:A36)))))))))))))))))))))), "→" ) )
the list I want o use is
| Column A |
|---|
| a |
| b |
| c |
| d |
| e |
| f |
| g |
| h |
| i |
| j |
| k |
| l |
| m |
| n |
| o |
| p |
| q |
| r |
| s |
| t |
| u |
| v |
| w |
| x |
| y |
| z |
| 0 |
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
| 6 |
| 7 |
| 8 |
| 9 |
I've read theses 2 questions/responses, but it doesn't helped me so much with my problem
How to list all permutations without repetition?
Generate all possible combinations for Columns(cross join or Cartesian product)
I need to know can i print/show the generated values by batch for example or divided in multi spreadsheets.
Thanks with your help. Max