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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote 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
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 3 | |
| 3 | |
| 2 |
| User | Count |
|---|---|
| 16 | |
| 11 | |
| 11 | |
| 6 | |
| 5 |