I want to remove decimal numbers to the filed (Total) of Business partner aging (Summary report) in crystal report
I tried to edit the formula but there is no luck, I want to have only two decimal numbers
Below is the codes
local stringvar amountstring;
if {PLD__ITEMS.F_119}='' then ' ' else
(
amountstring:={PLD__ITEMS.F_119};
amountstring := replace(amountstring, "(", "-");
amountstring := replace(amountstring, ")", "");
amountstring := replace(amountstring, ")", "");
)
I need only two decimal numbers
Please anyone can help me