Hi
I have a field with the data type double. Somehow I cannot display the correct number of decimals (it only shows two in the report). I need to show five decimals and so resorted to the FORMAT(number, 5)option. Unfortunately, this results in left aligning of my data in the column.
Any suggestions as to how to get it to right align the field?
Here is what I did in the select statement:
SELECT tx_spncp_substance.name as 'Substance', tx_spncp_substance.type as 'Type', FORMAT(tx_spncp_quota.amount,5) as 'Quota in kg'
Thanks so much!
Werner