Forum Discussion
Time Intelligence for seasons
- Anonymous9 years ago
Hi v-yulgu-msft,
I've solved the issue by creating a calendar table with a seasonal column. Then I used the following formula to get the accumulated balances of the different seasons:
Saldo acumulado = CALCULATE(SUM(ACCOUNT_INFORMATION[SUM$Amount]);
FILTER(ALL('Calendar');
'Calendar'[NumTemporada]<=MAX('Calendar'[NumTemporada])
)
)
Thank you very much and best regards.
Hi v-yulgu-msft,
I've solved the issue by creating a calendar table with a seasonal column. Then I used the following formula to get the accumulated balances of the different seasons:
Saldo acumulado = CALCULATE(SUM(ACCOUNT_INFORMATION[SUM$Amount]);
FILTER(
ALL('Calendar');
'Calendar'[NumTemporada]<=MAX('Calendar'[NumTemporada])
)
)
Thank you very much and best regards.
Hi Anonymous,
Thanks for sharing your solution.
Regards,
Yuliana Gu