Crystal 8.5
I have the following formula in use:
--------
StringVar CopyString;
if {Orders.Copies}>0
then
CopyString := Cstr({Orders.Copies})+" Copy(ies) Transcript"
else
CopyString := " "
--------
The problem is that Orders.Copies is returning a value like 1.00, 3.00. I do not want decimal places when 'CopyString' is created.
How do I remove the decimal places?
Thanks.
I have the following formula in use:
--------
StringVar CopyString;
if {Orders.Copies}>0
then
CopyString := Cstr({Orders.Copies})+" Copy(ies) Transcript"
else
CopyString := " "
--------
The problem is that Orders.Copies is returning a value like 1.00, 3.00. I do not want decimal places when 'CopyString' is created.
How do I remove the decimal places?
Thanks.