Forum Discussion
Cohort Analysis
- 9 years ago
In this scenario, I don't know what your MRR mean and how your percentage remaining calculate.
But basically, you need to have to full calendar table and build relationship between monthly counter and date column. Then you can create a matrix, put StartDate as row group and Date on column group. If you want to use current MRR divide by total MRR under same StartDate. You can create a measure below and put it in Value.
= SUM ( Table[MRR] ) / CALCULATE ( SUM ( Table[MRR] ), ALLEXCEPT ( Table, Table[StartDate], Table[UniqueId] ) )Regards,
In this scenario, I don't know what your MRR mean and how your percentage remaining calculate.
But basically, you need to have to full calendar table and build relationship between monthly counter and date column. Then you can create a matrix, put StartDate as row group and Date on column group. If you want to use current MRR divide by total MRR under same StartDate. You can create a measure below and put it in Value.
=
SUM ( Table[MRR] )
/ CALCULATE (
SUM ( Table[MRR] ),
ALLEXCEPT ( Table, Table[StartDate], Table[UniqueId] )
)
Regards,
Thank you v-sihou-msft!:smileyvery-happy: