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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

expression


Hi,

Got the following expression which works but comes out as 0.48% when the answer should be 48%. The two figures are 1144 and 2296.

Can anyone help?

Num(Count([Tenant_Arrears])/Count([Address]), '%##.##') 

Cheers

Chris

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Num(Count([Tenant_Arrears])/Count([Address]), '##.##0%')

View solution in original post

4 Replies
Not applicable
Author

Hi Chris

the best would be not to use NUM function but set your result to % in "numbers" tab

best regards

Chris

MK_QSL
MVP
MVP

Num(Count([Tenant_Arrears])/Count([Address]), '##.##0%')

rustyfishbones
Master II
Master II

Hi Chris,

try like this

Num(Count([Tenant_Arrears])/Count([Address]), '#,##0%')

Not applicable
Author

you can try:

Num(Count([Tenant_Arrears])/Count([Address]), '%##.##') *100