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

Create an accumulative line chart showing 2 measures

Hi,

I'm trying to work out how to create a cumulative line chart that displays 2 lines showing the running totals of jobs created and jobs closed over a date/time period.  The attached show 2 charts created by developers using another product.  I'm trying to replicate these same charts in Qlik Sense.

A very small extract of my data set is as follows:

Job_NumberJob CreatedJob ClosedJob Status
2017-110027/04/2017 16:4227/04/2017 19:45Completed
2017-110127/04/2017 16:45Open
2017-110227/04/2017 16:4627/04/2017 17:50Completed
2017-110327/04/2017 16:4627/04/2017 18:30Completed
2017-110427/04/2017 16:4627/04/2017 22:00Completed
2017-110527/04/2017 16:4928/04/2017 9:15Completed
2017-110627/04/2017 16:55
27/04/2017 16:55
Referred

Any help and guidance here will certainly be appreciated.

Thanks kindly.

1 Solution

Accepted Solutions
karthikoffi27se
Creator III
Creator III

Hi Ozzie,

Try using the line chart with the below expression.

=RangeSum(Above(Count(Job_Number),1,RowNo()))

This will create a accumulative sum of the jobs that get created based on date and hours.

Many Thanks

Karthik

View solution in original post

2 Replies
karthikoffi27se
Creator III
Creator III

Hi Ozzie,

Try using the line chart with the below expression.

=RangeSum(Above(Count(Job_Number),1,RowNo()))

This will create a accumulative sum of the jobs that get created based on date and hours.

Many Thanks

Karthik

Anonymous
Not applicable
Author

Hi Karthik,

Thanks kindly - you've got me on track with what I need to do.

Take care,

Ozzie