如何从Excel中的求解器中删除所有约束?

发布于 2024-08-23 13:04:02 字数 92 浏览 8 评论 0原文

如果我确切知道约束的样子,我可以使用 SolverDelete 删除约束。

如何在不知道约束的情况下使用 VBA 删除所有约束?

I can use SolverDelete to delete a constraint if I know exactly what it looks like.

How can I delete all constraints with VBA without knowing them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

痴骨ら 2024-08-30 13:04:02

您可以使用SolverGet函数。

SolverGet(TypeNum, SheetName)

TypeNum 是必需的整数。指定您想要的信息类型的数字。在“求解器参数”对话框中指定以下设置。

您需要的TypeNum参数是:

5,约束的数量。
6、约束左侧数组,文本形式。
7、对应约束左右两边关系的数字数组:1代表<=,2代表=,3代表>=,4代表int,5代表bin。
8、约束右侧的数组,文本形式。

有关更多详细信息,请参阅 SolverGet 上的 Excel 帮助。

You can use the SolverGet Function.

SolverGet(TypeNum, SheetName)

TypeNum is a required Integer. A number specifying the type of information you want. The following settings are specified in the Solver Parameters dialog box.

The TypeNum parameters you need are:

5, The number of constraints.
6, An array of the left sides of the constraints, in text form.
7, An array of numbers corresponding to the relationships between the left and right sides of the constraints: 1 represents <=, 2 represents =, 3 represents >=, 4 represents int, and 5 represents bin.
8, An array of the right sides of the constraints, in text form.

See Excel Help on SolverGet for more details.

我偏爱纯白色 2024-08-30 13:04:02

如果您不知道所有参数,SolverReset 就可以工作。

SolverReset works if you don´t know all the parameters.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文