Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
martin_hamilton
Creator
Creator

cumulative count based on CREATED_MONTH

Hi All - i am loading data whereby all records have a CREATED_MONTH derived as part of the load. e.g.

USER_ID,

CREATED_DATETIME,

Date(Date#(CREATED_DATETIME,'YYYY-MM-DD hh.mm.ss'),'DD/MM/YYYY') AS CREATED_DATE,

MonthName(timestamp#(CREATED_DATETIME,'YYYY-MM-DD hh.mm.ss')) as CREATED_MONTH

I wish to create a line graph which shows 2 tracked measures e.g. USER_UD created each month and accumulated count of USER_IDs per month. obviously i can just do a count of user_ids based on created_month but how do i create a cumulative value.

Am not sure whether of the expression.

So it would look something like this.

qsimageforgraph.PNG

Any help appreciated. Also I wasnt sure whether it was best to include as part of the load script to generate a new table or within the expression of the graph.

Thanks

Martin

1 Solution

Accepted Solutions
OmarBenSalem

As Dimension:

Created_Month

As measures:

Measure 1 : count(USER_ID)

Measure 2(cumulative): rangesum(above(count(USER_ID),0,rowno())

View solution in original post

1 Reply
OmarBenSalem

As Dimension:

Created_Month

As measures:

Measure 1 : count(USER_ID)

Measure 2(cumulative): rangesum(above(count(USER_ID),0,rowno())