Hi MrShorty,
Thank you for the reference links, there is a slight chance I just didn't know what I was looking for.
I recorded a macro setting up solver:
Sub Solver_Max()
'
' Solver_Max Macro
'
'
SolverOk SetCell:="$Z$2", MaxMinVal:=1, ValueOf:=0, ByChange:="$X$2", Engine:=2 _
, EngineDesc:="Simplex LP"
SolverAdd CellRef:="$X$2", Relation:=3, FormulaText:="$T$2"
SolverAdd CellRef:="$X$2", Relation:=1, FormulaText:="$U$2"
SolverAdd CellRef:="$Y$2", Relation:=3, FormulaText:="$V$2"
SolverAdd CellRef:="$Y$2", Relation:=1, FormulaText:="$W$2"
SolverOk SetCell:="$Z$2", MaxMinVal:=1, ValueOf:=0, ByChange:="$X$2", Engine:=2 _
, EngineDesc:="Simplex LP"
SolverOk SetCell:="$Z$2", MaxMinVal:=1, ValueOf:=0, ByChange:="$X$2", Engine:=2 _
, EngineDesc:="Simplex LP"
SolverSolve True
End Sub
Now on to the part of automating solver through the next 826 rows. What would be a good starting point? I have tried to copy and paste the format from your examples, but am getting confused since they are different formulas.
Could you please help me out? I appreciate the response.
Bookmarks