Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在我的 VBA 代码中使用Goalseek,而不是在我的电子表格中为目标“CELL”寻找目标,我需要在我的 VBA 代码中为“VARIABLE”寻找目标。
例如,我需要设置在我的 VBA 代码中声明的目标变量,而不是将某些目标 CELL 设置为“A3”。
当然,同样适用于“通过更改”字段。
这甚至可能吗?
使用屏幕外的单元格位置进行计算,然后在该过程完成后,将单元格值加载到您的变量中,例如:
...GoalSeek ... ChangingCell:=Worksheets("Sheet1").Cells("A5000") MyVar = Worksheets("Sheet1").Cells("A5000").Value