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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Number formatting in %

I am displaying a text object as follows

=Num(((Sum(Online_Sales)/(Sum(Online_Sales)+ Sum(Retail_Sales)))*100),#,##0.00%)

If I manually calculate the values should be in Single digit. approx 2.41%. I am getting 241.48%.

Should I multiply by 100 ?

Labels (1)
1 Solution

Accepted Solutions
Sokkorn
Master
Master

Hi sairan06,

=Num(0.0241,'#,##0.00%') Return 2.41%

Apply to your expression, we should not multiply by 100.

Regards,

Sokkorn

View solution in original post

3 Replies
vikasmahajan
MVP
MVP

Select number tab  fix 2 decimal  and multiply formula by *100 and  select Show in % setting

Hope this will resolve your problem

Vikas

Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.
If you want to go quickly, go alone. If you want to go far, go together.
Sokkorn
Master
Master

Hi sairan06,

=Num(0.0241,'#,##0.00%') Return 2.41%

Apply to your expression, we should not multiply by 100.

Regards,

Sokkorn

er_mohit
Master II
Master II

Try this

Num((Sum(Online_Sales)/(Sum(Online_Sales)+ Sum(Retail_Sales))),#,##0.00%)