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

Announcements
AWS Degraded - You may experience Community slowness, timeouts, or trouble accessing: LATEST HERE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Calculated Column

Hi All,

I have a problem. I need to create calculated column that will show % which will be calculated by Number/ Total.

Example:

   

A9526%
B9426%
C4613%
D298%
E10027%
Total364100%

A 95 =(95/364)=26%.

Please help on this.

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hi Narendra,

Use this expression:

=sum(Sales)/sum(TOTAL(Sales))

View solution in original post

4 Replies
varshavig12
Specialist
Specialist

sum(Sales)/sum(Total Sales)

khalander
Creator II
Creator II

=sum(Sales)/Sum(TOTAL(Sales))

Anonymous
Not applicable
Author

Hi Narendra,

Use this expression:

=sum(Sales)/sum(TOTAL(Sales))

Not applicable
Author

Thank you very much both of you