Bonjour à tous
j'aimerais boucler mon solveur afin qu'il me remplisse un tableau. ainsi je veux un code unique qui se boucle en changeant juste de colonne.
voici le code d'origine :
Sub Test()
SolverReset
SolverOk SetCell:="$C$17", MaxMinVal:=2, ValueOf:="0", ByChange:="$C$12:$C$14"
SolverAdd CellRef:="$C$12", Relation:=1, FormulaText:="1"
SolverAdd CellRef:="$C$12", Relation:=3, FormulaText:="0"
SolverAdd CellRef:="$C$13", Relation:=1, FormulaText:="1"
SolverAdd CellRef:="$C$13", Relation:=3, FormulaText:="0"
SolverAdd CellRef:="$C$14", Relation:=1, FormulaText:="1"
SolverAdd CellRef:="$C$14", Relation:=3, FormulaText:="0"
SolverAdd CellRef:="$C$15", Relation:=2, FormulaText:="1"
SolverAdd CellRef:="$C$16", Relation:=2, FormulaText:="$C$21"
SolverSolve userFinish:=True
End Sub
Ce code, je le réécrit pour la colonne D, E, F etc...jusqu'à H , or j'en voudrais juste un qui boucle toutes les colonnes.
Comment pourrais-je faire ?
Merci d'avance !