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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
aaronnayan
Creator III
Creator III

in chart text expression in a percentage to 1 decimal point

Hi guys how do i put my expression in a percentage to 1 decimal point?

Also to 2 decimal points please

4 Replies
Not applicable

num() function, like

num(your calculation here, '##.#') will give you one decimal place

aaronnayan
Creator III
Creator III
Author

I need it as a percentage Aaron

vishsaggi
Champion III
Champion III

Can you share your expression you want %ge ?

As Aaron said use Num(expr, ###0.00%)

OR

use chart properties -> Number tab -> Fixed radio button check.

Not applicable

num(your calculation here, '##.#') & '%'

Just add a % on the end. If you need to calculate it into a percent, multiply by 100