在 VB.NET 中使用 Crystal Report 的 2 列的总和
Posted
技术标签:
【中文标题】在 VB.NET 中使用 Crystal Report 的 2 列的总和【英文标题】:SUM of 2 Columns using Crystal Report in VB.NET 【发布时间】:2015-01-20 09:49:59 【问题描述】:我的表名是“accounting”
它有两列名为“借方”和“贷方”
这两列的总和可以吗?
示例:
输入: 借记卡信用卡 200 + -100 300 + -300 500 + -400 -------- ---------- 1000 -800我希望它在我的 Crystal Report 中显示如下:
借记贷记总计 200 -100 100 300 -300 0 500 -400 100 -------- ---------- --------- 1000 -800 200我不知道应该在 Crystal Report 中使用什么公式
【问题讨论】:
【参考方案1】:如果你在 sqlserver 中添加一个带有摘要的列,那就太好了
select
Debit, Credit, Debit+Credit as Total
from yourtable
如果你希望在水晶报表方面,那也是可以的。
添加一个变量并将其写入如下,并放在该字段附近的详细信息部分。
@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
【讨论】:
以上是关于在 VB.NET 中使用 Crystal Report 的 2 列的总和的主要内容,如果未能解决你的问题,请参考以下文章
Vb.net 和 Crystal Reports 添加组和子报表
错误“剩余的文本似乎不是公式的一部分”Crystal Reports 11.5.8.826
如何删除 Crystal Report Viewer 中的主选项卡?