有两个条件的水晶和

发布于 2024-10-06 08:54:17 字数 91 浏览 3 评论 0原文

我试图通过两个条件来获取摘要,就像Excel的Sumifs函数一样 例如 - Sum(Total_Costs),其中 Region = 4 且货币 = USD。提前致谢

I am trying to get summary by two conditions, much like Sumifs function of excel
Like - Sum(Total_Costs) where Region = 4 and Currency = USD. Thanks in advance

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

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

发布评论

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

评论(2

萌酱 2024-10-13 08:54:17

您必须创建一个名为 @Region4USD 的公式

if ({YourReport.Region} = 4 and {YourReport.Curency} = "USD") then
    {YourReport.Total_Cost}
else
    0

然后在该公式上创建一个 SUM

You will have to create a Formula called @Region4USD

Something like

if ({YourReport.Region} = 4 and {YourReport.Curency} = "USD") then
    {YourReport.Total_Cost}
else
    0

Then create a SUM on the formula

可是我不能没有你 2024-10-13 08:54:17

您可以创建一个运行总计。这样,当您单击“使用公式”选项时,您可以选择使用“评估”部分来使用您自己的条件。

You can create a running total. That way, you have the option of using the "Evaluate" section to use your own conditions when you click on the "Use formula" option.

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