求和“金额”的公式水晶报表中的列
我在 CR 中有一个列名称为“金额”。我需要对该列求和。
我创建了一个新公式并尝试了 sum( { MycolumnName} )
它说
“此处需要数字字段或货币金额字段”
是否有任何方法可以在公式本身中应用转换。
I have a column name as "Amount" in CR. I need to sum that column.
I created a new formula and tried sum( { MycolumnName} )
and it says
"A number field or currency amount field is required here"
Is there any way to apply conversion in formula itself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当您只需选择列并转到菜单并选择
插入摘要
、插入小计
或插入总计<来创建汇总字段时,为什么要创建公式/代码>取决于您的需要?您可以将汇总字段作为小计放在组部分中,或作为总计放在报表页脚中。
如果需要在公式中应用转换,可以使用
CCur
,如下所示:有关Crystal Reports 中转换类型的更多信息,请访问 此处。
Why create a formula when you can just create a summary field by selecting your column and going to the menu and selecting
Insert Summary
,Insert Subtotal
orInsert Grand Total
depending on your needs? You can place the summary field in a group section as a subtotal, or in the report footer as a grand total.If you need to apply a conversion in the formula, you can use
CCur
like this:More information on converting types in Crystal Reports can be found here.
将 .xsd 页面中
xs:element
中的MycolumnName
列的类型xs:string
更改为xs:decimal
Change the type
xs:string
toxs:decimal
of the columnMycolumnName
inxs:element
in .xsd page