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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
sureshbn21
Contributor
Contributor

How to create 3 sections into single table chart(qliksense)

Hi Everyone,

My requirement is to create a table with 3 sections. First sections contains Name and ID as a dimension, second section contains Name and Product as dimension and 3rd section contains Name as a dimension and Total as a Measure.

So that I can export the chart in a single shot. Regarding this, I have attached screen shot as below.

sureshbn21_0-1629281902595.png

 

How to resolve this issue. please guide me.

 

Thanks,

BNsuresh.

 

Labels (1)
2 Replies
stevejoyce
Specialist II
Specialist II

You can play around with this workaround:

 

Create an island table that has a value for each section + header row... so in your case 6 values

section:

load 

rowno() as section_num

autogenerate(6)

;

your dimension 1 will be:

=Pick(section_num, 'Name', [Name], 'Name', [Name], 'Name', [Name])

dimension 2 will be:

=Pick(section_num, 'ID', [ID], 'Product', [Product], 'Total', [Total])

measure:

=Pick(section_num, 'Measure', expression1, 'Measure', expression2, 'Measure', expression3)

 

you can make your column labels =chr(32) to not show as they are displayed in the dimension calculation on odd numbers.

 

=

35677
Contributor II
Contributor II

Hi Stevejoyce,

Thank you for your reply, I am able to attain the above requirement.

However when one of my measures is using aggr eg: sum(aggr(max(sales),Country)) I am able to fetch the value only for the first dimension(ID)  while it is returning 0 for the remaining dimension(Product,Total).

Please help me to solve this issue. Thanks in advance.