Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
i need some help With a measure for a cumulative
i have a table like this:
date Discription balance
01-01-22 kbkadjbsakjdb 25,00
01-01-22 jfdjksdjlksdfnh 50,00
01-01-22 lkjsdffnjksdf -70,00
02-01-22 lsjkdnflk 30,00
03-01-22 jsjkzf -33,85
03-01-22 lknslkdf 40,00
04-01-22 lkdfsnlksdf 80,00
i have a relation with a calender table to my fact table
many thaks
Something like that, try and say if it works.
CALCULATE(
SUM(table[balance],
DATESBETWEEN(CALENDAR[DateKey],date(2022,1,1),date(2021,1,1)
)
that does'nt work if used this measure without the breakdown:
hi @Anonymous
supposing your want to add up on date, try to plot a visual with date column and a measure like:
measure =
CALCULATE(
SUM(data[balance]),
data[date]<=MAX(data[date])
)it worked like:
it that so?
I need al the data in the tabel that i made in my exmaple i already have the measure for cumulative on date but i need another one for the breakdown on discription base. because of the breakdown i could have thee same day multiple times
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 10 | |
| 7 | |
| 3 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 19 | |
| 14 | |
| 11 | |
| 8 | |
| 7 |