Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All
I have a field

I need to show % at end of values like (0.21)%. i set it in Number properties, also used num(Expression,'#.##0,00%') but its not working ,any expression level script or properties to change?
Regards
It works for me:

See the QVW document below.
Best,
Peter
its calculation part need
Hi Vamsi,
there is a parenthesis error, try with this:
Num(if([Field (%)]/100<=0,0, if([Field(%)]/100<1, '(' &[Field(%)]/100& ')',if([Field(%)]/100>1,[Field(%)]/100))),'#0.00%')
Hi,
You can require like this (0.21)% . You can put Parenthesis (#,##0.0)%

it is not working as you have set the positive number format only.
you need to set the negative format too.
num(Expression,'#.##0,00%;(#.##0,00)%')
only 0% is showing and other values like (0.21) are missing.
All null values are also showing %

try,simply u have to select from NUMBER tab- show in percent chek and modify ur expression accordingly.
Thank you Peter but not working ..
only 0% is showing and other values like (0.21) are missing.