March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello Dax gurus!,
I have the count for each consecutive month in the below screen shot. What i want to get is the values in the Total column. For each consMonth 1,2,3,4....., i want to add up the values in the count column.
May 20 = 1
Jun 20 = 1+1
July 20 = 1 + 1 + 2
Aug and oct or not consecutive months so the total start again in Oct and so on. Here is the output i am expecting:
thanks
Hi,
Total =
VAR ThisStartMonth = 'Table'[Startmonth]
VAR FirstMonth =
CALCULATE (
MAX ( 'Table'[Startmonth] ),
FILTER (
'Table',
'Table'[Startmonth] <= ThisStartMonth
&& 'Table'[consMonths] = 1
)
)
RETURN
CALCULATE (
SUM ( 'Table'[Count] ),
FILTER (
'Table',
'Table'[Startmonth] >= FirstMonth
&& 'Table'[Startmonth] <= ThisStartMonth
)
)
Regards
@aristotle I think you are going to have to start with a resetting counter and that is Cthulhu:
Cthulhu - Microsoft Power BI Community
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
23 | |
15 | |
12 | |
9 | |
8 |
User | Count |
---|---|
41 | |
32 | |
29 | |
12 | |
12 |