Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content
Announcements
Qlik Launches Open Lakehouse and advanced agentic AI experience in Qlik Answers! | LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
vikasshana
Creator II
Creator II

How to perform aggregation

Hi,

I've below data.

As Of Month Period Num Den
2025001 2024005 0 0
2025001 2024006 0 0
2025001 2024010 0 0
2025001 2024011 0 0

 

I'm trying to create chart with As Of Month, sum(Num) and Sum(Den) and end up with the below chart

As Of Month sum(Num) sum(Den)
2025001 0 0

 

But expecting below output

As Of Month sum(Num) sum(Den)
2025001 0 0
2025001 0 0
2025001 0 0
2025001 0 0

 


 
1 Solution

Accepted Solutions
rubenmarin

Hi, so you want to see the same values in the dimension? Maybe using Dual([As Of Month],Period) as calculated dimension.

It could be  Dual([As Of Month],Num#(Period,0)) if Period is a string.

 

 

View solution in original post

2 Replies
rubenmarin

Hi, so you want to see the same values in the dimension? Maybe using Dual([As Of Month],Period) as calculated dimension.

It could be  Dual([As Of Month],Num#(Period,0)) if Period is a string.

 

 
vikasshana
Creator II
Creator II
Author

thank you, it is working..!!!