Completely new to Crystal Reporting...
I had a formula field to count incidents for a given section
This worked as I would expect and as the result will always be an integer, it was formatted to display without any decimal places.
I then edited the formula to make it more descriptive like so...
The result is fine except for always displaying '.00' after the integer.
Please can anyone advise me on how to format the number within the formula or any other method of suppressing the trailing decimals?
Thanks very much
I had a formula field to count incidents for a given section
Code:
Count({incident.incident_ref}, {serv_dept.serv_dept_n})
I then edited the formula to make it more descriptive like so...
Code:
"Count of incidents logged by members of the " & {serv_dept.serv_dept_n} & " SVD: " & Count({incident.incident_ref}, {serv_dept.serv_dept_n})
Please can anyone advise me on how to format the number within the formula or any other method of suppressing the trailing decimals?
Thanks very much