Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Percentage symbol

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


Labels (1)
30 Replies
Peter_Cammaert
Partner - Champion III
Partner - Champion III

It works for me:

AddPercentageSymbol thread157503.jpg

See the QVW document below.

Best,

Peter

Not applicable
Author

its calculation part need

anlonghi2
Creator II
Creator II

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%')

Not applicable
Author

Hi,

You can require like this (0.21)% . You can put Parenthesis (#,##0.0)%

Untitled.png

sudeepkm
Specialist III
Specialist III

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)%')

Not applicable
Author

only 0% is showing and other values like (0.21) are missing.

Not applicable
Author

All null values are also showing %

buzzy996
Master II
Master II

try,simply u have to select from NUMBER tab- show in percent chek and modify ur expression accordingly.

Not applicable
Author

Thank you Peter but not working ..

Not applicable
Author

only 0% is showing and other values like (0.21) are missing.