Question

I have a column name Amount whose values are sometimes like 400(300) and hence the data type is string in Crystal report.

Now i wish to do summation of Amount Column.How to do that?

the Sum(FieldName) forumla does not work because it is string. I, no way can convert it into numeric..

Let me know if any inputs required.

Thanks..

Was it helpful?

Solution

Create a new formula in your report like so:

if (IsNull({Testing.Amount}) or not IsNumeric({Testing.Amount}) or {Testing.Amount} = "")
Then 0 
Else
ToNumber({Testing.Amount})

And display the formula on the report.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top