Hello All
I am trying to find all unique combinations of a list of words. The list would ultimately consist of 20-25 words.
Example (with small sample):
Input:
A
B
C
Output:
"A B C"
"A B"
"A C"
"A"
"B C"
"B"
"C"
I have tried using VBA, but as soon as the amount of words exceeds 5 it is a long process and thus not viable for a long list solution. I hope that somebody have had a similar problem and thus had a solution for this problem?
I am trying to find all unique combinations of a list of words. The list would ultimately consist of 20-25 words.
Example (with small sample):
Input:
A
B
C
Output:
"A B C"
"A B"
"A C"
"A"
"B C"
"B"
"C"
I have tried using VBA, but as soon as the amount of words exceeds 5 it is a long process and thus not viable for a long list solution. I hope that somebody have had a similar problem and thus had a solution for this problem?