所以我两组
tblTenant.ID
tblTransaction.TenantID

在tblTransactions中,有两个我要操作的字段,AmountCharged和AmountPaid。如何对两个字段求和并按组减去它们?即,每个租户将对所有他们的amountCharged求和,然后对他们的AmountPaid求和。

例如,SQL将为:

SELECT SUM(tblTransactions.AmountCharged) - SUM(tblTransactions.AmountPaid) FROM tblTransactions
Where tblTrascactions.TenantID = x

其中“x”是该组的租户ID。

最佳答案

我能想到的最简单的方法是在明细行上创建一个公式字段AmountCharged-AmountPaid并将其隐藏。然后,只需右键单击它,然后在组中插入一个总和即可。

10-08 13:33