Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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)))