VB.NET 中使用 Crystal 报告的 2 列总和

SUM of 2 Columns using Crystal Report in VB.NET

我的 table 名字是 "accounting"

它有两列名为 "Debit" 和 "Credit"

是否可以得到这两列的总和?

示例:

               输入:
      借记卡信用卡
       200 + -100
       300 + -300
       500 + -400
     ------------------
      1000 -800

我希望它在我的 Crystal 报告中显示为这样:

借记贷记总计
  200 -100 100
  300 -300 0
  500 -400 100
------ ---------- ----------
  1000 -800 200

我不知道我应该在 Crystal 报告中使用什么 FORMULA

最好在 sqlserver 中完成此操作,因为添加一个带有摘要的列,例如

select 
    Debit, Credit, Debit+Credit as Total
from yourtable

如果你想在crystal举报方,那也是可以的。

添加一个变量,如下所示,并放在详细信息部分的此字段附近。

{@yourtablename.DebitField} + {@yourtablename.creditField} //I forgot the syntax, please change aproopriate.

Adding Sum of fields of two tables giving strange result in Crystal Report

http://vbcity.com/forums/t/154231.aspx