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

Totals Month to Month

Below is an excel spreadsheet displaying the total number of users from MTM (57,642...). I'm having an issue getting that column to populate in Qlik Sense. 

Excel Total Number of Users MTMExcel Total Number of Users MTM

Here's what I am able to create which is the number of users for that month but not a rolling MTM. 

 Qlik Sense Users Created MTMQlik Sense Users Created MTM

 Thank you in advance! 

1 Solution

Accepted Solutions
sunny_talwar

How about this

RangeSum(
   Count(TOTAL User),
   -RangeSum(Above(Count(User), 1, RowNo()))
)

View solution in original post

4 Replies
sunny_talwar

Assuming your expression for User Count is Count(User), try this

RangeSum(Below(Count(User), 0, RowNo()))
Rnc2005
Contributor II
Contributor II
Author

Thank you for the quick response. 

The formula's adding MTM: Nov & Dec providing a total of 679  but I was hoping to see the totals in the second screenshot:QlikNewFormula.PNGUserCountExcel.PNG

 

 

sunny_talwar

How about this

RangeSum(
   Count(TOTAL User),
   -RangeSum(Above(Count(User), 1, RowNo()))
)
Rnc2005
Contributor II
Contributor II
Author

That did it 🙂 

Thank you so much, I appreciate the help!!!