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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
karandeep
Contributor II
Contributor II

Populating percentage in Qliksense Pivot

Hi there, I am trying to populate the %age in Qliksense Pivot similar to as populated in Excel summary below. 

I have used a formula that gives the **bleep** figures rangeSum(before(count(Item),0,ColumnNo())) however not able to populate the %age, Can you please help. Thank you!

karandeep_0-1746196865252.png

 

 

Labels (1)
1 Solution

Accepted Solutions
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi there,

For the percentage, divide your cumulative sum by the total by Department:

rangeSum(before(count(Item),0,ColumnNo())) / count( total <Department> Item)

I think this should work.

Cheers,

View solution in original post

2 Replies
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi there,

For the percentage, divide your cumulative sum by the total by Department:

rangeSum(before(count(Item),0,ColumnNo())) / count( total <Department> Item)

I think this should work.

Cheers,

karandeep
Contributor II
Contributor II
Author

Thank you so much, This worked! 🙂