在 Axapta 2009 报告中添加小计和总计
我有一个像这样的报告
分类 项目 数量 重量(公斤)值
我想添加每个分类的小计和重量和价值的总计。如何?
I have a report like this
Classification Item Qty Weight (Kg) Value
I want to add subtotal per Classification and grandtotal to both Weight and Value. How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要添加分类小计,您需要将相应字段的
SumAll
属性设置为 Yes。但是,您需要手动计算重量和价值的总计,您可以通过运行element.execute(...);
将它们显示在单独的ProgrammableSection
中code>fetch() 方法。To add a subtotal for Classification you need to set the
SumAll
property of the corresponding field to Yes. However you would need to calculate grand totals of Weight and Value manually, you can display them in a separateProgrammableSection
by runningelement.execute(...);
from thefetch()
method.