Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to show expression value in percentage?

Hi,

I have data as below

                    

Adam34537468
Jack25354223
Tony45425324
Marbella53445234
Kindergarten4534523424

Dimension: Staff

Expression: Sum(Sales)

I have to show other column as Sum(Sales) in percentage in Pivot table. can anyone suggest me how to write the expression . I have tried below but not showing correct percentage

=Num(Sum(Sales)/Sum(Sales),'#,##0.00%')

Thanks.

1 Solution

Accepted Solutions
rubenmarin

Hi Amelia, try:

=Num(Sum(Sales)/Sum(TOTAL Sales),'#,##0.00%')

View solution in original post

3 Replies
rubenmarin

Hi Amelia, try:

=Num(Sum(Sales)/Sum(TOTAL Sales),'#,##0.00%')

Not applicable
Author

Exactly. Thanks.

Anonymous
Not applicable
Author

Try:

Num(Sum(Sales)/Sum(total Sales),'#,##0.00%')