Aqui está o meu código VBA para o Excel Solver:
SolverAdd CellRef:="$G$209", Relation:=2, FormulaText:="$G$210"
Equivalentemente, estou tentando escrever algo assim:
SolverAdd CellRef:=Worksheets("Sheet1").Cells(209, 7).Value, Relation:=2, FormulaText:=Worksheets("Sheet1").Cells(210, 7).Value
Mas esta sintaxe está errada. Como posso escrever esse código corretamente? Mais tarde, poderei escrever um loop for usando este formato "Células (x, y)". Agradeço antecipadamente.
microsoft-excel
vba
solver
Übel Yildmar
fonte
fonte
ActiveSheet.cells(1,1).select
ActiveCell.Value = ...