vote up 0 vote down star

After creating a new workbook, I am trying to solve a newly created worksheet of this workbook in VBA. Despite of activating the new worksheet, Solver attempts to solve the worksheet, where the macro lies.

Any suggestions, on how to make sure Solver solves the right worksheet?

I use this code to activate the worksheet.

ws.Activate

And this is an example, how I reference the cells in the parametrization of Solver.

SolverOk SetCell:=Range("$E$" & i)
flag

1 Answer

vote up 1 vote down check

I just had to reopen the workbook.

Workbooks.Open "foo.xls"
wb.Activate
ws.Activate
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.