+ Reply to Thread
Results 1 to 14 of 14

Solver within VBA

  1. #1
    Registered User
    Join Date
    03-19-2018
    Location
    Brussels
    MS-Off Ver
    2016
    Posts
    6

    Solver within VBA

    we.tl/WejujzQFbZ -> put https before

    Hi there,

    You can download my Excel-file by using WeTransfer as I was not able to upload the file.

    My problem is as following.
    I have a hundred of arrays which are the inputs of a solver model. So a Solver model has to run a hundred times and each time the output has to be put in the corresponding array (column I and J).
    I am totally new to VBA, so I don't have any idea what is technically possible.
    Now I have tried to write a Solver code in a separate module, which is then called in the other module (within a loop).
    When I execute this in VBA, I get error code 9: Subscript out of range.

    Does anyone know how I can fix this?

    Many thanks!!

    Kind regards,

    Lisa

  2. #2
    Forum Guru Kaper's Avatar
    Join Date
    12-14-2013
    Location
    Warsaw, Poland
    MS-Off Ver
    most often: Office 365 in Windows environment
    Posts
    8,863

    Re: Solver within VBA

    Hi Lisa,

    Unfortunately, I do not trust wetransfer, so have not downloaded your file (pity that you couldn't attach it here - may be it was too big?)

    When you see error dialog displayed, press Debug button. The line of code where execution stopped shall be highlighted yellow. It's often (not always) source of the problem. May be you refer there (in this line) to non-existing sheet, to illegal range, or collection element, etc.

    What is in this line?
    Best Regards,

    Kaper

  3. #3
    Registered User
    Join Date
    03-19-2018
    Location
    Brussels
    MS-Off Ver
    2016
    Posts
    6

    Re: Solver within VBA

    Hi,

    I hope I managed to upload the excel file now. Otherwise you can find parts of my code here.

    When I debug, the highlighted line is the following: Sheets("Start").Cells(i, 9) = Sheets("Solver").Cells(4, 2). So this is the line, just behind executing the solver model.

    Please Login or Register  to view this content.
    This is full code of my solver module:
    Please Login or Register  to view this content.
    Best regards,

    Lisa
    Attached Files Attached Files

  4. #4
    Forum Expert Alf's Avatar
    Join Date
    03-13-2004
    Location
    Gothenburg/Mullsjoe, Sweden
    MS-Off Ver
    Excel 2019 and not sure I like it
    Posts
    4,784

    Re: Solver within VBA

    Looking at you solver macro setup I do see some problems with it.

    First of all the value in the target (object) cell should be a formula so when solver changes the value of the variable cells the value in the target cell should change.

    In the cells to change you have specified B4:C4;C6. As target cell is C6 it should not be included as the change in B4:C4 should generate a change in C6 as
    this cell should contain a formula. See comments above.

    The constrains I see in the solver setup is not found in the macro so when macro is run solver will ignore this.

    I do think you macro should look something like this:

    Please Login or Register  to view this content.

    As for your "subscription out of range" problem I can't pin it down but as you file has links to other files (cells B3:C3) it may have something to do with this as solver works only on the active sheet.

    I've also changed SolverSolve Userfinish to "True" as this will make solver loop through all values for i from 9 to 109 before it stops.

    Alf

  5. #5
    Registered User
    Join Date
    03-19-2018
    Location
    Brussels
    MS-Off Ver
    2016
    Posts
    6

    Re: Solver within VBA

    Hi,

    Thank you so much for your help.
    First, I don't think that the target cell has to be a function, my LP is just built in that way that this value has to be minimized; which is used in the constraints. Actually, the largest proportional difference has to be minimized.
    When I use the Solver function (without VBA, so manually), the model in this construction works perfectly!

    Since I have added the constraints in the macro, the model is now running (I don't receive any error codes anymore).
    However, it is not giving me the right solution.
    I notice that the "<" constraints are fulfilled, but not the "=" constraint.
    I don't understand the problem as the right relation (2) is used in the macro.

    Enclosed, you can find the updated excel file.


    Lisa
    Attached Files Attached Files
    Last edited by lisavba; 03-26-2018 at 02:20 PM.

  6. #6
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP, 2007, 2024
    Posts
    16,387

    Re: Solver within VBA

    However, it is not giving me the right solution.
    I notice that the "<" constraints are fulfilled, but not the "=" constraint.
    I don't understand the problem as the right relation (2) is used in the macro.
    I think it is impossible to meet all constraints. You are asking for:
    1) values in row 4 to be less than the values in row 3 (B4<B3 and C4<C3), but
    2) You want the values in row 4 to sum up to something greater than the sum of the values in row 3. (B4+C4>B3+C3). Intuitively, it should be apparent that both of these conditions cannot be met.

    I note that, if I put something less than 11739 (say 8000 or 10000) into D11, that Solver seems to solve the problem without any difficulty with no changes to the Solver model. Perhaps more analysis of the problem is warranted. Do you really want values greater than 30000 in D11? Is the spreadsheet model as currently programmed able to reflect this desire?

    I also note that your true objective function looks like a simple ABS() function =ABS(B4/B3-C4/C3). A little tinkering suggests to me that the minimum of this will always be 0. If we can prove to ourselves that this is true, I think this problem can simplify to a simple "solve a system of equations" problem:
    EQN1) 0=ABS(B4/B3-C4/C3)
    EQN2) D11=B4+C4

    With a little algebra, that could be solved explicitly for B4 and C4, and we would not need Solver at all. That would be a lot easier to program into the spreadsheet. (A refresher if you have forgotten how to solve systems of equations: http://www.purplemath.com/modules/systlin1.htm

    I would bet that there is more to analyze here, if you want. I think that's how I would approach this problem -- spend some more time with it algebraically until I understood the properties of the problem.
    Last edited by MrShorty; 03-26-2018 at 05:12 PM.
    Quote Originally Posted by shg
    Mathematics is the native language of the natural world. Just trying to become literate.

  7. #7
    Forum Expert Alf's Avatar
    Join Date
    03-13-2004
    Location
    Gothenburg/Mullsjoe, Sweden
    MS-Off Ver
    Excel 2019 and not sure I like it
    Posts
    4,784

    Re: Solver within VBA

    I don't think that the target cell has to be a function, my LP is just built in that way that this value has to be minimized; which is used in the constraints.
    I do think the makers of solver beg to defer as they state that:

    In Excel, Solver is part of a suite of commands sometimes called what-if analysis tools. With Solver, you can find an optimal (maximum or minimum) value for a formula in one cell — called the objective cell — subject to constraints, or limits, on the values of other formula cells on a worksheet. Solver works with a group of cells — called decision variable cells — that participate in computing the formulas in the objective and constraint cells. Solver adjusts the values in the decision variable cells to satisfy the limits on constraint cells and produce the result you want for the objective cell.
    Alf

  8. #8
    Registered User
    Join Date
    03-19-2018
    Location
    Brussels
    MS-Off Ver
    2016
    Posts
    6

    Re: Solver within VBA

    Thank you all!
    I found my mistake, I had to define the stand-alone costs (Sheet Solver) within my macro.
    Now it works perfectly!

    And yes I realized that in case of two players Solver doesn't have to be used as it works algebraically. But I have to expand the model to more players and in that case Solver is needed. So this was just a step to make sure that a more complicated model can work.

    The only question that I now have is what if Solver doesn't find a feasible solution? When this happens Solver should give me a N/A value instead of giving me a solution that is not feasible.

    Thanks!

    Lisa
    Attached Files Attached Files

  9. #9
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP, 2007, 2024
    Posts
    16,387

    Re: Solver within VBA

    I don't think that Solver (by itself) can return an N/A error. I would expect that you would have your code look at the result of the SolverSolve function and use that information to edit the spreadsheet. I find this a good resource page (https://peltiertech.com/Excel/SolverVBA.html ), that includes a list of all of the outputs for the SolverSolve function (5 appears to represent the "Solver could not find a feasible solution" result, though there are other variations that mean Solver could not solve). As shown in Peltier's tutorial, you will need to edit your macro so that you can store the result of the SolverSolve function in a variable. Then, as illustrated in Peltier's tutorial, use a block If..Then..Else (I could also see using a Select Case) to determine why Solver finished and choose what to do based on that value.

  10. #10
    Forum Expert Alf's Avatar
    Join Date
    03-13-2004
    Location
    Gothenburg/Mullsjoe, Sweden
    MS-Off Ver
    Excel 2019 and not sure I like it
    Posts
    4,784

    Re: Solver within VBA

    Looking at the result from the solver run it seems that the only time you get an infeasible solution is when the formula in the K column (Total gain) is negative.

    So why not add an if statement testing for a K value less than 0 and make solver skip these lines? Something like

    Please Login or Register  to view this content.
    Alf

  11. #11
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP, 2007, 2024
    Posts
    16,387

    Re: Solver within VBA

    If Sheets("Start").Cells(i, 11).Value < 0 Then
    GoTo skipper
    I'm going to date myself, but this statement brought up images of Gilligan running through the palm trees screaming "SKIPPEEEERRRRRR!!!!"

    If you are unfamiliar with Gilligan's Island, put it into youtube's search engine and have fun.

    My apologies. Enough personification of VBA today. Resume your regular discussion.

  12. #12
    Registered User
    Join Date
    03-19-2018
    Location
    Brussels
    MS-Off Ver
    2016
    Posts
    6

    Re: Solver within VBA

    In this case, it is indeed noticeable when Solver will give an infeasible solution.
    This is not the case in a game with three players, the gain may be positive but due to subcoalitions no feasible solution may be found.

    I was just hoping there would exist a simple line in the macro, that would not give a return value when Solver can't find a feasible solution.
    But seems too complex to let it work.

    Lisa

  13. #13
    Forum Expert Alf's Avatar
    Join Date
    03-13-2004
    Location
    Gothenburg/Mullsjoe, Sweden
    MS-Off Ver
    Excel 2019 and not sure I like it
    Posts
    4,784

    Re: Solver within VBA

    Please Login or Register  to view this content.
    Not sure that program ran in Sweden, but I've heard of it. Funny how we associate with names. I was hoping the reference to Gilligan's Island would bring up
    lush palm trees, white coral beaches and deep blue sea but it seems we can't always get things as we wish.

    On the other hand I've had worse. On OP asked if a was a man or an alien life form which I thought was rater funny and occasionally I do wonder about that myself.

    Please Login or Register  to view this content.
    Don't worry about that, I do prefer comments like that as they tend to enlighten the threads.

    Lisa I'm not sure you can capture infeasible solutions when you are running solver in a loop using VB. You could contact the makers of solver and see if they can/will help you.

    https://www.solver.com/

    Try their Support -> Technical Support. Problem is that they developed and sold the excel solver to Microsoft and there is no support agreement between them and the solver user of excel.

    Perhaps you could use the freebie "OpenSolver" developed by the university of Auckland NZ. It integrates nicely with Excel and it do stop when it finds an infeasibility even if it is running in a loop with vb as opposed to the excel solver.

    https://opensolver.org/


    OpenSolver_inf.jpg

    Alf
    Last edited by Alf; 03-27-2018 at 06:24 PM.

  14. #14
    Forum Expert Alf's Avatar
    Join Date
    03-13-2004
    Location
    Gothenburg/Mullsjoe, Sweden
    MS-Off Ver
    Excel 2019 and not sure I like it
    Posts
    4,784

    Re: Solver within VBA

    Don't know what happened but it seems I go a double posting of the same comments so I deleted this.
    Last edited by Alf; 03-27-2018 at 06:28 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 7
    Last Post: 12-31-2016, 12:29 PM
  2. Replies: 1
    Last Post: 04-27-2016, 03:05 PM
  3. Replies: 0
    Last Post: 07-20-2014, 12:45 PM
  4. Replies: 6
    Last Post: 05-18-2013, 05:49 AM
  5. Can't start Solver. Error message says Solver.xlam already open.
    By DaveHills in forum For Other Platforms(Mac, Google Docs, Mobile OS etc)
    Replies: 1
    Last Post: 10-21-2012, 11:02 AM
  6. solver macro + simulation code + not updating solver values
    By sabinemaria in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-24-2012, 11:37 AM
  7. Interesting Solver problem (Solver encounters an error)
    By MrShorty in forum Excel General
    Replies: 3
    Last Post: 12-22-2005, 06:55 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1