Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Date accumulated sum measure is running down in the last three months of the period

I have a measure calculating running total for defined period (separate calendar table was added).
Everithing seems to work fine, but for some reason it just drops in the last 3 months of the mentioned period - reflecting only very little portion of the whole dataset.
So, this is the fomula:

QualifCummulTD = CALCULATE(Sum('cpb_ mainQualificationDataSet'[QualifWeight2Col]),
    FILTER(ALL('Calendar'[Date]) ,
        'Calendar'[Date] <= Max('Calendar'[Date])
    )
)
 

Calendar contains all dates from mainQualificationDataSet (2005 till 2019.12)
And this is the chart output:

 

image.png

1 REPLY 1
kentyler
Solution Sage
Solution Sage

QualifCummulTD =
VAR cal_date = MAX('calendar'[date])


CALCULATE(Sum('cpb_ mainQualificationDataSet'[QualifWeight2Col]),

    FILTER(ALL('Calendar'[Date]) ,
        'Calendar'[Date] <= cal_date)
    )
RETURN cal_date
)
Use a VAR to get an intermediate value.

Then return the VAR instead of the sum, so see if you can see any unexpected values in those months.





Did this post answer your question? Mark it as a solution so others can find it!

Help when you know. Ask when you don't!




Join the conversation at We Talk BI find out more about me at Slow BI


Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors