Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
dunnalahk123
Creator III
Creator III

how to add percentage sign in Qlikview without multiplying 100

Hi,

Can some one help me how to add percentage sign in Qlikview with out multiplying 100.

Example:

i am getting my output value as     >>>>  3125  but i need to add  percentage to it  like below how can i do it.

3125 %

=Num(Avg(Aggr(Avg([TESTNEW]), [TESTNEWID])),'#,##0' )

Best Regards,

HK

1 Solution

Accepted Solutions
tresesco
MVP
MVP

If you need '%' just for displaying, you can use string concatenation like:

= <your expression> & ' %'

View solution in original post

5 Replies
Chanty4u
MVP
MVP

try

'#,##0.0%')


or 


num(your expression) '%'

tresesco
MVP
MVP

If you need '%' just for displaying, you can use string concatenation like:

= <your expression> & ' %'

dunnalahk123
Creator III
Creator III
Author

Thank You it works. 🙂

qlikviewwizard
Master II
Master II

Hi,

Please check this example.

Data:

LOAD * INLINE [

Group,Sales

A,1

B,2

C,3

D,4

];

Method1:

Capture1.PNG

Method 2:

Capture.PNG

Capture2.PNG

sowmi
Creator
Creator

In object properties under number you can select number format as percentage for the particular field.