VBA can create all possible sets of Min and Max Sums

motilulla

Well-known Member
Joined
Feb 13, 2008
Messages
2,362
Office Version
  1. 2010
Hello,

I have got 42 random numbers in 3 rows and in 14 columns in cells D6:Q8 my task is to pick 1 number from each column and use 14 columns (make set of 14 numbers) with Min and Max of sums

In the example given below you can see the min sum could be made = 126 and the max sum = 484

I need macro which and list all possible sets can be formed between Min & Max sum (in this given example case all between 126 & 484)

Here is the sample data


Book1
CDEFGHIJKLMNOPQR
1
2
3
4
5C1C2C3C4C5C6C7C8C9C10C11C12C13C14
6Row 15452544155713013082815
7Row 236291384145462312922732
8Row 385686614442417171217100
9
10
11Min Sum55644154420202100126
12
13Max Sum3645258615457124311712172832484
14
15
16
Sheet1
Cell Formulas
RangeFormula
R11=SUM(D11:Q11)
R13=SUM(D13:Q13)



Thank you all
Excel 2000
Regards,
Moti
 
Last edited:
Hi Moti,
here the code to list combinations matching a specific sum. It is based on post #10 layout.

Code:
Sub MOTIshowCOMBS()
    Dim myarr(1 To 14) As Variant
    Dim mysum As Long
    Dim mynumbers As Variant
    Dim T As Single
    
    T = Timer
    mysum = Range("C5").Value
    mynumbers = Range("D6:Q8").Value
    Range("x6", Cells(ActiveSheet.Cells(Rows.Count, 24).End(xlUp).Row + 1, 38)).ClearContents
    For x1 = 1 To 3: For x2 = 1 To 3: For x3 = 1 To 3: For x4 = 1 To 3
        For x5 = 1 To 3: For x6 = 1 To 3: For x7 = 1 To 3: For x8 = 1 To 3
            For x9 = 1 To 3: For x10 = 1 To 3:  For x11 = 1 To 3: For x12 = 1 To 3
                For x13 = 1 To 3:  For x14 = 1 To 3
                    myarr(1) = mynumbers(x1, 1)
                    myarr(2) = mynumbers(x2, 2)
                    myarr(3) = mynumbers(x3, 3)
                    myarr(4) = mynumbers(x4, 4)
                    myarr(5) = mynumbers(x5, 5)
                    myarr(6) = mynumbers(x6, 6)
                    myarr(7) = mynumbers(x7, 7)
                    myarr(8) = mynumbers(x8, 8)
                    myarr(9) = mynumbers(x9, 9)
                    myarr(10) = mynumbers(x10, 10)
                    myarr(11) = mynumbers(x11, 11)
                    myarr(12) = mynumbers(x12, 12)
                    myarr(13) = mynumbers(x13, 13)
                    myarr(14) = mynumbers(x14, 14)
                    tot = myarr(1) + myarr(2) + myarr(3) + myarr(4) + myarr(5) + myarr(6) + myarr(7) + myarr(8) + myarr(9) + myarr(10) + myarr(11) + myarr(12) + myarr(13) + myarr(14)
                    If tot = mysum Then
                        lastrow = ActiveSheet.Cells(Rows.Count, 24).End(xlUp).Row
                        ActiveSheet.Range(Cells(lastrow + 1, 24), Cells(lastrow + 1, 37)).Value = myarr
                        ActiveSheet.Cells(lastrow + 1, 38).Value = tot
                    End If
                    DoEvents
                Next x14: Next x13
            Next x12:  Next x11: Next x10: Next x9
        Next x8: Next x7: Next x6: Next x5
    Next x4: Next x3: Next x2: Next x1
    MsgBox (Timer - T)
End Sub


None of sums lists more combinations than rows in excel 2000 worksheet.
Hope this helps

Have a nice rest of the day
 
Upvote 0

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Hi Moti,
here the code to list combinations matching a specific sum. It is based on post #10 layout.

Code:
Sub MOTIshowCOMBS()
    Dim myarr(1 To 14) As Variant
    Dim mysum As Long
    Dim mynumbers As Variant
    Dim T As Single
    
    T = Timer
    mysum = Range("C5").Value
    mynumbers = Range("D6:Q8").Value
    Range("x6", Cells(ActiveSheet.Cells(Rows.Count, 24).End(xlUp).Row + 1, 38)).ClearContents
    For x1 = 1 To 3: For x2 = 1 To 3: For x3 = 1 To 3: For x4 = 1 To 3
        For x5 = 1 To 3: For x6 = 1 To 3: For x7 = 1 To 3: For x8 = 1 To 3
            For x9 = 1 To 3: For x10 = 1 To 3:  For x11 = 1 To 3: For x12 = 1 To 3
                For x13 = 1 To 3:  For x14 = 1 To 3
                    myarr(1) = mynumbers(x1, 1)
                    myarr(2) = mynumbers(x2, 2)
                    myarr(3) = mynumbers(x3, 3)
                    myarr(4) = mynumbers(x4, 4)
                    myarr(5) = mynumbers(x5, 5)
                    myarr(6) = mynumbers(x6, 6)
                    myarr(7) = mynumbers(x7, 7)
                    myarr(8) = mynumbers(x8, 8)
                    myarr(9) = mynumbers(x9, 9)
                    myarr(10) = mynumbers(x10, 10)
                    myarr(11) = mynumbers(x11, 11)
                    myarr(12) = mynumbers(x12, 12)
                    myarr(13) = mynumbers(x13, 13)
                    myarr(14) = mynumbers(x14, 14)
                    tot = myarr(1) + myarr(2) + myarr(3) + myarr(4) + myarr(5) + myarr(6) + myarr(7) + myarr(8) + myarr(9) + myarr(10) + myarr(11) + myarr(12) + myarr(13) + myarr(14)
                    If tot = mysum Then
                        lastrow = ActiveSheet.Cells(Rows.Count, 24).End(xlUp).Row
                        ActiveSheet.Range(Cells(lastrow + 1, 24), Cells(lastrow + 1, 37)).Value = myarr
                        ActiveSheet.Cells(lastrow + 1, 38).Value = tot
                    End If
                    DoEvents
                Next x14: Next x13
            Next x12:  Next x11: Next x10: Next x9
        Next x8: Next x7: Next x6: Next x5
    Next x4: Next x3: Next x2: Next x1
    MsgBox (Timer - T)
End Sub


None of sums lists more combinations than rows in excel 2000 worksheet.
Hope this helps

Have a nice rest of the day
Thank you B___P, I appreciate your support it is exactly as I wanted Amazing!! Code.

Doing the job quick and the results are 100% OK!!


Thank you very much

Good Night

Kind Regards,
Moti :) :)
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,559
Members
449,089
Latest member
Motoracer88

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