Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
jyotiwagde
Partner - Contributor
Partner - Contributor

Cumulative Month Sum in KPI Object

Hi All,

I have the below table,  New Adv. column contains the data for the advisor who are freshly hired every month.

Cumml column having the running total for each month.

Need to show the total showing at top row on KPI object.

let say we are selecting Dec FY2019 then the KPI should give me the value 69+160+163+199=591

cumm.PNGThanks in advance.

 

 

10 Replies
sunny_talwar

How about something like this

Aggr(
RangeSum(
Above(
Sum({<[Link Date] = {"<=$(=Max([Link Date]))"}, [Member Type] = {'HM'}, FYear, Month, FQtr>} [Head Count])
, 0, RowNo())
)
, Employee, ([Month Start], (NUMERIC)))