水晶报告:全局子报告变量总和未传输到父主报告
我正在运行 Crystal Reports 11,主报告中有一个计算余额的子报告。 在子报表余额中,我有一个名为balancetotal 的公式,该公式手动对 tarinvoice.balance 字段的运行总计求和。
WhileReadingRecords;
global numbervar balancetotal;
balancetotal := balancetotal + {tarInvoice.Balance}
在主要父报告中,我有一个名为balancetotal的公式,其中包含以下公式:
global numbervar balancetotal;
balancetotal;
这是不正确的吗?
提前致谢
I am running crystal reports 11 and in the main report is a subreport which calculates the balance. In the subreport balance, I have the formula named balancetotal which manually sums the running total of the tarinvoice.balance field.
WhileReadingRecords;
global numbervar balancetotal;
balancetotal := balancetotal + {tarInvoice.Balance}
In the main parent report, i have a formula named balancetotal with this formula:
global numbervar balancetotal;
balancetotal;
is this incorrect?
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没关系。 我应该使用“共享”而不是“全局”
nevermind. I'm supposed to use "shared" instead of "global"