Results 1 to 11 of 11

VBA Solver with integer that changes

Threaded View

  1. #1
    Registered User
    Join Date
    04-20-2020
    Location
    Sweden
    MS-Off Ver
    Office 365
    Posts
    5

    VBA Solver with integer that changes

    Hello,

    I’m trying to use solver through VBA since my constrains will change. The problem im having is that my cell value is “0,1251” and after I run my code the solver used 1251 instead. How do I code my VBA so that the solver can read the decimal point?

    The value in for example cell(17,31) is 1,251 %

    Here is my code:

    Sub Patrik_solver()
    
    Dim y As Integer
    For y = 31 To 45
    
    Solverreset
    
    SolverOk SetCell:="$R$31", MaxMinVal:=1, ValueOf:=0, ByChange:="$T$18:$T$28", _
    Engine:=1, EngineDesc:="GRG Nonlinear"
    SolverAdd CellRef:="$T$29", Relation:=2, FormulaText:=1
    SolverAdd CellRef:="$X$29", Relation:=1, FormulaText:="20%"
    SolverAdd CellRef:="$Y$29", Relation:=1, FormulaText:="50%"
    SolverAdd CellRef:="$Y$29", Relation:=3, FormulaText:="10%"
    SolverAdd CellRef:="$Z$29", Relation:=3, FormulaText:="10%"
    SolverAdd CellRef:="$Z$29", Relation:=1, FormulaText:="30%"
    SolverAdd CellRef:="$AA$29", Relation:=1, FormulaText:="15%"
    SolverAdd CellRef:="$R$33", Relation:=2, FormulaText:=Cells(17, y)
    
    SolverSolve (True)
    
    Range("T18:T29").Copy
    Cells(18, y).Select
    ActiveSheet.Paste
    Range("R31:R33").Copy
    Cells(31, y).Select
    Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
    xlNone, SkipBlanks:=False, Transpose:=False
    
    Next y
    
    Application.CutCopyMode = False
    
    End Sub
    Last edited by Pepe Le Mokko; 04-20-2020 at 06:18 AM. Reason: Code tags

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Binary Integer Programming Solver Help
    By OnlyAntony in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 12-13-2017, 02:13 PM
  2. Solver Integer Constraints and VBA
    By Larry Curcio in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-13-2010, 01:13 PM
  3. [SOLVED] Problem with Solver and Integer constraints
    By Tushar Mehta in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 09-06-2005, 04:05 PM
  4. Problem with Solver and Integer constraints
    By dave.rafkind@gmail.com in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 10:05 AM
  5. [SOLVED] Problem with Solver and Integer constraints
    By dave.rafkind@gmail.com in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 02:05 AM
  6. [SOLVED] Problem with Solver and Integer constraints
    By dave.rafkind@gmail.com in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 12:05 AM
  7. Integer iterations in solver
    By Stevie D in forum Excel General
    Replies: 3
    Last Post: 07-24-2005, 09:05 AM

Tags for this Thread

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