Hi VSM,
what I want to display in report is
100000 as 1.0
1000000 as 10.0
10000000 as 100.0
100000000 as 1000.0
and so forth..
The format type you suggested works only for the last one.
hope you understand my requiremnet :-)
Actual number | Format | Uotput |
100000 | ###0"."00, | 1.00 |
1000000 | ###0"."00, | 10.00 |
10000000 | ###0"."00, | 100.00 |
100000000 | ###0"."00, | 1000.00 |
1000000000 | ###0"."00, | 10000.00 |
Shrikant