I want to create a list of possible results out of a set amount of numbers. See example below:
Numbers in list:
1
2
3
The result I would want here would be:
1+2+3
1+2
1+3
2+3
1
2
3
How would I go about generating these results using either Excel or Excel VBA?
Thank you in advance