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

Ignore Dimensions in chart set analysis

Good Day ,

I have a straight table with thse figures:

dimension :  Month

expression count(ID)

Chart 1:  

MonthTotal
Jan10
Feb12
Mar14

Now i want to ignore the Dimension using set analysis

so that my end result is like this :

  

Month PrevMonTotal
Jan0
Feb10
Mar12
Apr14

thanx in advance

1 Solution

Accepted Solutions
hic
Former Employee
Former Employee

The Set Analysis is global for the chart - i.e. it is not evaluated row-by-row. The best way to solve this problem is to use

     RangeSum(Above(Count(ID)))

Then you get the value from previous row.

HIC

View solution in original post

1 Reply
hic
Former Employee
Former Employee

The Set Analysis is global for the chart - i.e. it is not evaluated row-by-row. The best way to solve this problem is to use

     RangeSum(Above(Count(ID)))

Then you get the value from previous row.

HIC