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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
MuraliPrasath
Creator III
Creator III

How to get Percentage Total?

Hi,

I've a table, and I'm using Subtotals on Top of the table but I'm not getting the totals for Percentage field (%)  column.

Capture.PNG

1 Solution

Accepted Solutions
sunny_talwar

Try this if you need to see a Avg % as total:

Avg(Aggr(yourExpression, yourDimension))

Replace Avg with Sum if you want to see the Sum up top.

Please note that Aggr won't work, if you are using expression label or Column function. You will need to use the actual expression which calculates that percentage.

HTH

Best,

Sunny

View solution in original post

2 Replies
sunny_talwar

Try this if you need to see a Avg % as total:

Avg(Aggr(yourExpression, yourDimension))

Replace Avg with Sum if you want to see the Sum up top.

Please note that Aggr won't work, if you are using expression label or Column function. You will need to use the actual expression which calculates that percentage.

HTH

Best,

Sunny

MuraliPrasath
Creator III
Creator III
Author

thank you sooooo much.