Hello,
I have an interactive report and simple report based on a table with float numbers. Problem is, float numbers with value between 0 and 1 are shown ".1" not "0.1"
For example, for values 0.1, 1 and 12.1 I get:
If I add format mask FM999999999999990D99999 to this field, I fix ".1" value, but value "1" becomes "1." which is bad:
1
What I would like to see in a report is:
How could I do it?
I wrote function which makes needed result as a varchar2 value. Data in reports shows fine, but then problem with sorting arised - data is being sorted as text, not as number, for example:
Any ideas?
Thank you