Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
ashok1203
Creator II
Creator II

requirement on report with totals

Hi All,

I need to create a report with all the detailed information and totals information by using the given data. Can anyone please help me to achieve the Output.

Source:

a.PNG

Output: (In a Single table)

output.PNG

AAK
12 Replies
ashok1203
Creator II
Creator II
Author

Thanks Andrew,

As of i now, i did the same thing and placed the reports in a container. But user wants to export the data into a single file.

AAK
effinty2112
Master
Master

Hi Ashokkumar,

Create a straight table with these dimensions:

=ValueList('Global','APAC','EMEA','LAC','NA')

Style

and an expression

Sum(if (ValueList('Global','APAC','EMEA','LAC','NA')='Global', Aggr(sum(value),Style),

if(Region =ValueList('Global','APAC','EMEA','LAC','NA'),value)))

gives:

Region Style Value
Global1221150
Global3456360
Global1230390
Global1234500
APAC123080
APAC1234100
APAC1221110
EMEA122140
EMEA3456110
EMEA1234200
LAC123450
LAC3456130
LAC1230160
NA3456120
NA1230150
NA1234150

Regards

Andrew

ashok1203
Creator II
Creator II
Author

Thanks Andrew.

This was really helped me a lot.

AAK