Forum Discussion
uie07923
3 years agoFrequent Visitor
Cumulative - % Monthly Rate
Hello all, I'm struggling to reach the cumulative fluctuation rate. Every month end, we extract a headcount total. During that month there are employee exits. The rate between Exits / Total Hea...
- 3 years ago
Maybe try this:
fluctuation rate Cumm = SUMX( FILTER( ALL( dCalendar[YearMonth] ), dCalendar[YearMonth] <= MAX( 'dCalendar'[YearMonth] ) ), [fluctuation] )
amitchandak
3 years agoSuper User
uie07923 , Assuming you have common date table with month year and measure fluctuation rate
Try a new measure
fluctuation rate Cumm= sumx(Values(Date[Month Year]), [fluctuation rate])
uie07923
3 years agoFrequent Visitor
Are you considering the creation of an additional table with only the results of the fluctuation rate?
I tried the measure, but it didn't work:
- grantsamborn3 years agoSolution Sage
Maybe try this:
fluctuation rate Cumm = SUMX( FILTER( ALL( dCalendar[YearMonth] ), dCalendar[YearMonth] <= MAX( 'dCalendar'[YearMonth] ) ), [fluctuation] )