Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register 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
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
21 | |
20 | |
19 | |
13 | |
12 |
User | Count |
---|---|
41 | |
29 | |
23 | |
22 | |
22 |