VBA 中的简单脚本,用于从标记的单元格中获取值、添加它们并显示总数

发布于 2024-11-17 12:17:12 字数 235 浏览 3 评论 0原文

Excel columns

我需要在 VBA 中编写一个脚本,以便如果 B 列有 ax (或刚刚被填充),则转到它左侧的单元格并获取值,我想在工作表上执行此操作,并且我希望能够根据需要计算项目的总成本。

我会在单击按钮时运行此命令,因此我希望它获取所有值,将它们相加,然后显示总数,但仅限于带有 ax 的值(在 B 列中)。

Excel columns

I need to write a script in VBA so that if column B has a x (or just is filled) then goto the cell to the left of it and get the value, I want to do this on a worksheet and I want to be able to calculate the total cost of a project depending if its required.

I would run this on event of a button click, so I want it to get all the values, add them up, and display me the total, But ONLY for the values with a x (in column B).

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

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

发布评论

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

评论(1

叫思念不要吵 2024-11-24 12:17:12

这是您需要的公式:

=SUMIF(B:B,"=x",A:A)

您可以通过以下方式在 VBA 中使用该公式:

Range("D7") = WorksheetFunction.SumIf(Range("B:B"), "=x", Range("A:A"))

Here is the formula you need:

=SUMIF(B:B,"=x",A:A)

which you can use in VBA this way:

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