I'm exporting a report as a plain text file, however, any decimal values that are generated appear as '123.4' (for 123.40) or 500 (for 500.00). Is it possible to have the correct number of decimals added as part of the FORMAT command being used to generate them?
Thanks
0
Comments
try using the format-expression like:
FORMAT(ExportValue,0,'<Sign><Integer><Decimals,3>')
Best regards
FORMAT(ExportValue,0,'<Precision,2:2><Sign><Integer><Decimals>');