Hi, I have two columns, e.g.
| Name1 | Name2 |
| Method1 | a |
| Method1 | b |
| Method2 | a |
| Method2 | b |
| Method2 | c |
| Method2 | d |
I need to have all the combination of these two columns and the result should be:
| Method1-a |
| Method 1-b |
| Method1 a-b |
| Method2 a |
| Method2 b |
| Method2 c |
| Method2 d |
| Method2 a b |
| Method2 a c |
| Method2 a d |
| Method2 a b c and so on. Is this possible? Thanks. |