Macro to input value and find all solutions of addition to make that value.

Winston0301

New Member
Joined
Oct 10, 2015
Messages
11
Hi All,

I was wondering if there was a way I could input a number, select a data array and then get a macro to tell me every possible solution of adding those numbers in the selection together to make the input value.

So if I had a selection

1, 2, 3, 5

And I input 5 I would to want the macro to return 2 + 3 on one line then 5 on another line and then end the macro.

Hopefully this makes sense! Thanks in advance.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
This is a variant of the Subset Sum problem, which is known to be NP-Complete. (That's computer science talk for "it's really hard, and no one knows a really good way of finding the answer.")

But there are ways to solve it, usually involving trial and error. These usually work fine if the data array isn't too big. How big is your data set going to be? How do you want to enter the data set? In a group of cells on a spreadsheet, as an array in the VBA code, entered in an inputbox?
 
Upvote 0
Hi Eric,

Thanks for your response. The data array will normally be about 200 rows long. Is it possible to select the array on entering the macro?

Id like an input box for the number I need and I want it to return all possible solutions if possible.

Thanks again.
 
Upvote 0
Very nice reference, Gary's Student. Better than the code I was thinking about.

Winston, you can take that code, and you'd need to add a check to see if a given subset equals your target number. However, at 200 rows, I think the macro would take a very long time to run. You'll have to add some efficiency improvements, such as: is the sum of elements 3 and 7 greater than my target? If so, I don't need to check any subsets with those 2 elements, no matter what size. That kind of macro improvement is a bit beyond what I can do through this forum.

Good luck!
 
Upvote 0
Hi both,

Thanks for your responses, that code looks similar to what I need in listing all the items.

Im not really in tune with VBA, in saying that I'm really a newbie, I can do basic stuff with it such as using file dialogs, ifs and error trapping but beyond that I'm not really any good haha.

Do either of you know how to write the code where it looks for every solution to a subtotal?

Thanks again a in for your responses.
 
Upvote 0

Forum statistics

Threads
1,223,234
Messages
6,170,891
Members
452,366
Latest member
TePunaBloke

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top