Hi All,
I am having amount field and I need to show it with $ symbol as a currency.
I did following steps
1.Right click the column and choose format number
2.select the currency and select one of the format available
It works fine with the amounts greater than 0,but when amount is 0 it don’t even shows the value.
Custom formatting? If it is Desk-I, I would create a custom format like this.
Number -> Positive ($###.00) -> Negative ($###.00)-> Equal to zero ($0.00)
Firstly my column don’t return any null values. Its is as shown below
Amount
100.00
120.20
0.00
Jansi,
It is a Webi Report. I added the custom format you suggested
Positive: ($ ###.00)
Negative: ($###.00)
Equal to Zero:($0.00)
It is showing up nothing in that column with the custom format.
bkaproch,
My column has values as 0.00 and don’t have any null values.
Arjun,
Your first suggestion did not work,your next post did but just minor change in the format #,##0.00. I needed to put 0 before the decimal and it worked perfect
Create a variable: =If(IsNull([Amount]);0;[Amount])
Measure="$"+FormatNumber([Variable];"(#,##0.00)")
Thanks for your trick.