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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set analytics.

HI, ALL.

I'm using the set analytics.

now table shows each sum like qvw file.

but, I wanna showing sum of each same column(as col1)

so far I used 'set analytics','aggr', 'rangesum'...

I don't know how to resolve this...

result I want is

month     col1      sum(col2)

1               a              63

                 b              63

2               b              47

                 c              47

3               c              51

                 d              51

4               d               27

thanks any opinions.

1 Solution

Accepted Solutions
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try this expression

=sum(TOTAL<month>col2)

Regards,

Jagan.

View solution in original post

3 Replies
jagan
Partner - Champion III
Partner - Champion III

Hi,

Try this expression

=sum(TOTAL<month>col2)

Regards,

Jagan.

MK_QSL
MVP
MVP

instead of sum(col2) use below expression as.

SUM(TOTAL <month> col2)

Not applicable
Author

Thank you!! Jagan!!