I'm trying to write some code for my solver but for some reason when I write the code below, I keep getting a "step into Prompt" which I've enclosed in a word document. I can't seem to disable this prompt, any help will be greatly appreciated and thank you for all your help in the past.
Sub SOLVER()
'
' Solver Macro
'
Application.DisplayAlerts = False
Application.Run "Solver.XLAM!SolverReset"
SolverReset
Application.Run "SolverOk", "$C$7", 3, "30", "$C$3"
SolverSolve userFinish:=True
SolverFinish
''SolverOk SetCell:="$G$7", MaxMinVal:=3, ValueOf:="32", ByChange:="$G$3"
'SolverSolve True
Application.DisplayAlerts = True
End Sub
Bookmarks