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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to get column level percentage

Hi All,

My Data Looks like

A     B     C       D      Total  %a            %b            %c     %d

10  20      30     40      100    =10/100   =20/100  =30/100  =40/100

Could you help how to get the precntage part

2 Replies
MindaugasBacius
Partner - Specialist III
Partner - Specialist III

In expression use:

=Column(1)/Column(5)

=Column(2)/Column(5)

and move on.


In Number sheet set:

Screenshot_1.jpg

sunny_talwar

You can try like this:

A/RangeSum(A, B, C, D)

B/RangeSum(A, B, C, D)

C/RangeSum(A, B, C, D)

D/RangeSum(A, B, C, D)