minimum no. of cells in a row that add up exactly to a target number

ABHISKV4

New Member
Joined
May 26, 2009
Messages
31
Office Version
  1. 365
Platform
  1. Windows
Need to highlight the minimum no. of cells in the range starting from Column C till CX for each row, such that these add up to exactly the target number. Also would like to have the list of these numbers in descending order and the cell numbers of these numbers. In case same number is available for more no. of times than needed, the leftmost cells get preference and can be used for highlighting the cell. To summarize the requirements, my expectations are as below (See Example1 of pasted excel screenshot)
1. Highlight the cells which add up to these number
2. The list of these numbers in descending order. Answer: 16,16,4
3. The cell numbers of these numbers in descending order, if a number is repeated like in case above (16), then the leftmost cell number comes first, followed by next. Answer: E12, K12 and D12

Hope i have clearly explained everything, kindly feel free to ask if any more information/clarity is required further. Both excel formulas (normal/array) and VBA code are equally welcome as a solution to this problem, thanks in advance.

Book30
ABCDEFGHIJKLMNOPQRSTUVWXYZAAABACADAEAFAGAHAIAJAKALAMANAOAPAQARASATAUAVAWAXAYAZBABBBCBDBEBFBGBHBIBJBKBLBMBNBOBPBQBRBSBTBUBVBWBXBYBZCACBCCCDCECFCGCHCICJCKCLCMCNCOCPCQCRCSCTCUCVCWCX
1
2Target NumberAnswerCTN1CTN2CTN3CTN4CTN5CTN6CTN7CTN8CTN9CTN10CTN11CTN12CTN13CTN14CTN15CTN16CTN17CTN18CTN19CTN20CTN21CTN22CTN23CTN24CTN25CTN26CTN27CTN28CTN29CTN30CTN31CTN32CTN33CTN34CTN35CTN36CTN37CTN38CTN39CTN40CTN41CTN42CTN43CTN44CTN45CTN46CTN47CTN48CTN49CTN50CTN51CTN52CTN53CTN54CTN55CTN56CTN57CTN58CTN59CTN60CTN61CTN62CTN63CTN64CTN65CTN66CTN67CTN68CTN69CTN70CTN71CTN72CTN73CTN74CTN75CTN76CTN77CTN78CTN79CTN80CTN81CTN82CTN83CTN84CTN85CTN86CTN87CTN88CTN89CTN90CTN91CTN92CTN93CTN94CTN95CTN96CTN97CTN98CTN99CTN100
336141632817163151116812112116114111161711712116121111113121161115141114151142115282810169861110171213111181215111171231111110
424121111111111111121117271021012222221112511111119112158111811122125181112922811011121121321121113215111021
5181531111521111711421212512151112221111221117221122117121212112722821121761111112111211112211111211111
6152111121112411111611352131416112412211241211211111111111162112213125111161111211271211211721111112111
7121111111132111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
8101121411211121112114111124113222211121111612111111211111112232121111112121121312111111212221211141111
981211113312121131211222122122211111121111212212122111122211122222112211331121121113111112111111113211
10
11Example1: Illustration of expected answer is provided below
123636141632817163151116812112116114111161711712116121111113121161115141114151142115282810169861110171213111181215111171231111110
13
14Example2: Illustration of expected answer is provided below
1512121111111132111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
Sheet2
Cell Formulas
RangeFormula
B12B12=D12+E12+K12
B15B15=C15+D15+E15+F15+G15+H15+I15+K15+L15
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
I think this is not possible because you are asking for combination that adds up to target number . If anyone will post solution this would take time to derive because this will eat away system memory and might slow down excel . The core problem is finding the combination that matches with target. Excel would try to add each number present in column combination separately to identify the target unless the actual target is met . Its will be long loop.

example
1+4+16
4+1+16
16+1+4
1+16+4
4+16+1 and this will continue forever.
 
Upvote 0
Its will be long loop.
Thanks for your prompt opinion. I would like to have opinion from few other super users as well.

Will it help if I narrow the range, from current 100 cells to say, 20 cells. If yes, then I don't mind doing so, at-least I will have some solution instead of nothing.
 
Upvote 0
Thanks for your prompt opinion. I would like to have opinion from few other super users as well.

Will it help if I narrow the range, from current 100 cells to say, 20 cells. If yes, then I don't mind doing so, at-least I will have some solution instead of nothing.
You can use Excel solver ad in try below video
Solver Adin
 
Upvote 0
This is an interesting problem. So much so that I've taken a stab at it several times. But I don't try solving it anymore for a few reasons. There are 2 approaches to this. First, you can exhaustively try every combination and see if the sum is correct. But like earthworm said, the number of combinations grows rapidly. For 20 numbers, the number of combinations to check is over a million. Possible for a reasonably fast computer. For 100 numbers? Picture a 1 followed by 30 zeros. Not possible in the lifetime of the universe. The other option is to come up with a clever algorithm. Group the numbers into smaller sets maybe, eliminate duplicates, save partial sums, etc. Even so, this is NOT an easy problem! Look here:


Another reason I don't work on it anymore is because there are too many answers. Just looking at your example 1, which you solved with 16,16,4, I can see many other possibilities, such as 11,11,14. I have no doubt that if I were to write a program to find the answers, there would be millions of combinations that work, and probably thousands with only 3 numbers. How would you choose which one is the "best" answer?

Even with all that, some people have found workable solutions. See here:


That macro does the same thing you're asking. I have tried it, and it works, but I don't understand the algorithm.

So to sum up, creating such an algorithm is not an easy task, and even if it could be devised it would probably not give you the results you want. Which is why I don't work on these kinds of problems anymore. Nevertheless, I wish you luck!
 
Upvote 0
So to sum up, creating such an algorithm is not an easy task, and even if it could be devised it would probably not give you the results you want. Which is why I don't work on these kinds of problems anymore. Nevertheless, I wish you luck!
Many thanks @Eric W and @earthworm for your valuable feedback, at least I know now what to look for.

Even with all that, some people have found workable solutions. See here:

That macro does the same thing you're asking. I have tried it, and it works, but I don't understand the algorithm.
In the suggested VBA code (which I could not decode), if you could please help me where to place the Sum that I am looking for and where to place the list of all available invoices. Also please guide which Macro I need to run, as the module when pasted makes me available 4 macros.
 
Upvote 0
I explain here:


in post 2 how to use the macro. Since that post hasn't been fixed yet to show the workbook examples, here's just the explanation:

=====================================================================================

This was the subject of a MrExcel Challenge about 17 years ago. The winner wrote a macro to solve it. Quite impressive. Here's the link:

Accounts Receivable Challenge

To try it, open a new workbook. Press Alt-F11 to open the VBA editor. Press Alt-IM. Copy the code from the box that says: "IOANNIS's winning macro", and paste it into the window that opened. Press Alt-IM again. Paste the code from the "Module 2" box into that window. Go back to your Excel sheet and paste your values into B1:B100. Put the number of values in F1, and the target amount into F2.

Press Alt-F8, and choose the Challenge macro and click Run.

F14 has the start time, F15 has the end time. H1 has the solution. Take the numbers from that cell and add up the values in those rows in B1:B100, and they add up to the value in F2. If there are multiple answers, you'll get those combinations going down the H column.

=====================================================================================

I'd advise you to start small, with say 20 rows. Otherwise you could end up with millions of solutions and the macro might break since there's no room to store all the results.
 
Upvote 0
Hello Eric,

That code is awful, I am afraid :)
Michael Sch. has structured that well and allowed me to cite it:


Regards,
Sulprobil
 
Upvote 0
Hello Eric,

That code is awful, I am afraid :)
Michael Sch. has structured that well and allowed me to cite it:


Regards,
Sulprobil
Can't get any of these to work.
It causes my Excel to crash.
 
Upvote 0
Computers still cant beat Human Judgement till date :cool: in this one.
 
Upvote 0

Forum statistics

Threads
1,215,734
Messages
6,126,542
Members
449,316
Latest member
sravya

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