Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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
User | Count |
---|---|
21 | |
19 | |
12 | |
9 | |
7 |
User | Count |
---|---|
30 | |
27 | |
14 | |
13 | |
10 |