arvindanikode
IS-IT--Management
Using crystal reports,
Local StringVar txtS := "1020.0020";
totext(truncate(tonumber(txtS),4),4);
This will give me "1020.0019", whereas I would like to display "1020.0020" only. If I just use:
truncate(tonumber(txtS),4), this gives me "1020.00"
Can anybody help !!
Local StringVar txtS := "1020.0020";
totext(truncate(tonumber(txtS),4),4);
This will give me "1020.0019", whereas I would like to display "1020.0020" only. If I just use:
truncate(tonumber(txtS),4), this gives me "1020.00"
Can anybody help !!