列中的总和值如果其他两个列的差小于0,并且满足了额外的评论

发布于 2025-01-21 06:20:13 字数 1303 浏览 0 评论 0原文

  |      A      |      B     |        C        |          D           |     E       |
--|-------------|------------|-----------------|----------------------|-------------|-
1 |  Product    | sales_plan |  sales_actuals  |  purchase_quantity   |             |
2 |  Product_A  |     500    |       400       |         1200         |   Product_B |
3 |  Product_B  |     800    |       900       |         3000         |     5000    |
4 |  Product_B  |     300    |       490       |         2000         |             |
5 |  Product_D  |     900    |       820       |         7000         |             |
6 |  Product_D  |     200    |       250       |         5000         |             |
7 |  Product_D  |     700    |       600       |         4000         |             |

智能引用答案此问题单元格E3我想总结 puploy_quantity in 列d

a)如果sales_actuals> sales_plan
b)如果产品与单元格E2中的条目匹配。

我试图使用此公式,但无法使它起作用:

=SUMPRODUCT((C2:C7>B2:B7)*D2:D7;A2:A7=E2)

我需要修改它以获取正确的值?

  |      A      |      B     |        C        |          D           |     E       |
--|-------------|------------|-----------------|----------------------|-------------|-
1 |  Product    | sales_plan |  sales_actuals  |  purchase_quantity   |             |
2 |  Product_A  |     500    |       400       |         1200         |   Product_B |
3 |  Product_B  |     800    |       900       |         3000         |     5000    |
4 |  Product_B  |     300    |       490       |         2000         |             |
5 |  Product_D  |     900    |       820       |         7000         |             |
6 |  Product_D  |     200    |       250       |         5000         |             |
7 |  Product_D  |     700    |       600       |         4000         |             |

Wit reference to the answer in this question in Cell E3 I want to sum up the
purchase_quantity in Column D

a) if the sales_actuals > sales_plan and
b) if the product matches with the entry in Cell E2.

I tried to go with this formula but could not make it work:

=SUMPRODUCT((C2:C7>B2:B7)*D2:D7;A2:A7=E2)

How do I need to modify it to get the correct value?

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

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

发布评论

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

评论(1

海拔太高太耀眼 2025-01-28 06:20:13

如您在评论中所见,JVDV的答案正在工作:

=SUMPRODUCT((C2:C7>B2:B7)*(A2:A7=E2)*D2:D7)

As you can see in the comments the answer from JvdV is working:

=SUMPRODUCT((C2:C7>B2:B7)*(A2:A7=E2)*D2:D7)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文