我有一个列名Amount,其值有时像400(300),因此数据类型是Crystal报表中的字符串。
现在我想对Amount Column进行求和。如何做到这一点?
Sum(FieldName)forumla不起作用,因为它是字符串。我,无法将其转换为数字..
如果需要任何输入,请告诉我。
谢谢..
答案 0 :(得分:2)
在报告中创建一个新公式,如下所示:
if (IsNull({Testing.Amount}) or not IsNumeric({Testing.Amount}) or {Testing.Amount} = "")
Then 0
Else
ToNumber({Testing.Amount})
并在报告上显示公式。
答案 1 :(得分:0)
后来,但由于我被困在这里,所以