Load Multiple Solver Parameters and Solve

AnalystMind

New Member
Joined
Sep 9, 2015
Messages
3
Hello,

I am wondering if it is possible in VBA to load one Solver model (saved in a range) execute it then load another model (saved in another range) replace the first one and execute and so on.

Example:
SolverLoad loadArea:=Range("A1:A8") then solve, move on to
SolverLoad loadArea:=Range("B1:B8") solve and move on.

When I manually load solver from range it loads everything and is quite easy to execute but I would love to have all that automated in a button.

Any help is much appreciated.

Thank you.
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Hello


Code:
Sub Zero()
Dim i%
'solverok "$d$6", 1, 0, "$b$3:$b$5", 2, "Simplex LP"


For i = 1 To Range("p" & Rows.Count).End(xlUp).Row
    solverok Cells(i, "p"), 1, 0, Cells(i, "q"), 2, "Simplex LP"
    solversolve
    MsgBox "Solution is " & Range(Cells(i, "p"))
Next
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,493
Messages
6,125,131
Members
449,206
Latest member
burgsrus

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