Forum Discussion
tulasi_pbi1988
Helper I
7 years agoCumulative Total for each Quarter
Hello, I need help to calculate Cumulative total for each quarter. I had tried this measure cumm1 = TOTALQTD([Revenue$],'Calendar'[Date]) I need to quarter partition for cumu...
- Anonymous7 years ago
Hi tulasi_pbi1988 ,
Try this calculated column.
Cummulative = CALCULATE( SUM(Sheet7[Revenue]), FILTER( Sheet7, Sheet7[FY and Q]=EARLIER(Sheet7[FY and Q]) && Sheet7[ Date] <= EARLIER(Sheet7[ Date] ) ))Let me know if this works.
Thanks,
Tejaswi
Anonymous
7 years agoNot applicable
Hi tulasi_pbi1988 ,
Try this calculated column.
Cummulative = CALCULATE(
SUM(Sheet7[Revenue]),
FILTER(
Sheet7,
Sheet7[FY and Q]=EARLIER(Sheet7[FY and Q])
&& Sheet7[ Date] <= EARLIER(Sheet7[ Date]
)
))Let me know if this works.
Thanks,
Tejaswi
Anonymous
7 years agoNot applicable
- tulasi_pbi19887 years ago
Helper I
Hi Anonymous ,
Thank You,
Yes, it is useful.