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: 
fanninam
Creator
Creator

Format as a percentage

Good Afternoon,

I'm trying to get the following to format as a percentage.  It is not working.  The number format is still showing as .0080831034482759 even when I use the script below:

='Sustain'&sum(TOTAL{$<Category={'Sustain'}>} [Committed Amount]) / (Budget),'#,##0%'

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar

I think you forgot the Num() function.... Try this:

='Sustain' & Num(Sum(TOTAL {$<Category={'Sustain'}>} [Committed Amount]) / (Budget),'#,##0%')

View solution in original post

3 Replies
sunny_talwar

I think you forgot the Num() function.... Try this:

='Sustain' & Num(Sum(TOTAL {$<Category={'Sustain'}>} [Committed Amount]) / (Budget),'#,##0%')

vardhancse
Specialist III
Specialist III

can try this once:

='Sustain'& NUM(sum(TOTAL{$<Category={'Sustain'}>} [Committed Amount]) / (Budget),'#0.00%')

Not applicable

='Sustain'& NUM(sum(TOTAL{$<Category={'Sustain'}>} [Committed Amount]) / (Budget),'#0.00%')