Excel 数据透视表与“测量”

发布于 2025-01-10 21:01:05 字数 499 浏览 0 评论 0原文

我想使用Excel的数据透视表功能来解决我的以下问题。 我有两个表,如下所示:

Table= A_Master

在此处输入图像描述

Table= A_Child

在此处输入图像描述

A_MasterStudent Name 上的表 A_Child 联接的位置在数据透视表关系中。 最终表格必须如下所示:

在此处输入图像描述

这里我不知道如何创建 “Measure” = "FeesRemaining" 以便计算 ActualFees-FeesPaid。

I want to use the pivottable feature of excel to solve my below issue.
I have two tables as follows:

Table= A_Master

enter image description here

Table= A_Child

enter image description here

Where table A_Master Joins with table A_Child on Student Name in pivot table relationship.
The final table has to be like below:

enter image description here

Here I dont know how to create "Measure" = "FeesRemaining" so that it calculates ActualFees-FeesPaid.

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

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

发布评论

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

评论(1

握住你手 2025-01-17 21:01:05

如果您想要实际费用减去他们在另一张表中支付的所有费用之和之间的差额。不确定是否有更好的方法来做到这一点,但这是一种方法。

= CALCULATE(
    SUM(Master[Actual Fees]),
    FILTER(Master, 'Master'[Student Name] = VALUES('Master'[Student Name]))
) - CALCULATE(
    SUM(Child[Fees Paid]),
    FILTER(Child,'Child'[StudentName] = VALUES('Master'[Student Name]))
)

上述措施获取主表该行中学生所欠的所有费用的总和,然后减去子表中该学生所支付的所有费用的总和。

If you want the difference between what the actually fee is minus the sum of everything they paid in the other table. Not sure if there is a better way to do it but this is one way to do it.

= CALCULATE(
    SUM(Master[Actual Fees]),
    FILTER(Master, 'Master'[Student Name] = VALUES('Master'[Student Name]))
) - CALCULATE(
    SUM(Child[Fees Paid]),
    FILTER(Child,'Child'[StudentName] = VALUES('Master'[Student Name]))
)

The measure above gets a sum of all the fees that are owed by the student in that row of the master table, then subtracts the sum of everything that was paid by that student in the child table.

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