This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello! I have a problem with this cumulative column, I dont know what im doing wrong, but the cumulative always show the result of "total dolar" and not the cumulative as I want.
the measure "Loan Balance" is
Solved! Go to Solution.
Hi, @sebastianharg
If you are referring to the monthly cumulative calculation, please change your formula as follows:
Cumulative Loan Balance =
CALCULATE (
[Loan Balance],
FILTER (
ALL ( TANGODB2 ),
( TANGODB2[FECHA_EMIS].[Ano] = MAX ( TANGODB2[FECHA_EMIS].[Ano] ) )
&& (
TANGODB2[FECHA_EMIS].[Mes] = MAX ( TANGODB2[FECHA_EMIS].[Mes] )
&& ( TANGODB2[FECHA_EMIS] <= MAX ( TANGODB2[FECHA_EMIS] ) )
)
)
)
Best Regards,
Community Support Team _ Eason
Any Ideas? thanks!
Hi, @sebastianharg
If you are referring to the monthly cumulative calculation, please change your formula as follows:
Cumulative Loan Balance =
CALCULATE (
[Loan Balance],
FILTER (
ALL ( TANGODB2 ),
( TANGODB2[FECHA_EMIS].[Ano] = MAX ( TANGODB2[FECHA_EMIS].[Ano] ) )
&& (
TANGODB2[FECHA_EMIS].[Mes] = MAX ( TANGODB2[FECHA_EMIS].[Mes] )
&& ( TANGODB2[FECHA_EMIS] <= MAX ( TANGODB2[FECHA_EMIS] ) )
)
)
)
Best Regards,
Community Support Team _ Eason
Hey @sebastianharg ,
your problem is the filter context.
Each line can only see the date of the current line.
What date frame do you want to summarize? From the beginning of the year until the chosen date? From the beginning of the data until the chosen date?
If it's from the beginning of the year, then use the TOTALYTD function in the CALCULATE statement.
If it's from the beginning of all records, then use DATESINBETWEEN with FIRSTDATE(ALL(myDateTable[Date])) in the CALCULATE statement.
@selimovd thanks for your help, i would like to cumulate something dinamic depending on the range of that I selected for example in this case, from the month of june , cumulative from 1st of june to 30 of june.
is this possible?
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 37 | |
| 28 | |
| 28 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 37 | |
| 32 | |
| 28 | |
| 24 |