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
Aymane
Frequent Visitor

Create a calculated column for cumulative sum by Date

I'm trying to create a calculated column that calculates the cumulative sum. I created one in a DAX measure and its working fine:

 

CumulativeCount =
CALCULATE(
     SUM(Fact_CRM_CT[Count]),
    FILTER(ALLSELECTED(Fact_CRM_CT),Fact_CRM_CT[DateKey] <= MAX(Fact_CRM_CT[DateKey]) ))
 
I want to recreate the same in a calculated column but it is not working as expected.
1 ACCEPTED SOLUTION

Hi, @Aymane 

You are using a calculated column instead of measure column to display the result, so the final result is aggregated without recomputing.

You just need to change the summarize type of  calculated column 'Cumulative Count' from 'Sum' to 'Maximum'/'Minimum'/'Average'.

veasonfmsft_0-1661223298854.png

Best Regards,
Community Support Team _ Eason

View solution in original post

3 REPLIES 3
Aymane
Frequent Visitor

Hi @amitchandak,

 

Thanks for your response.

 

I have tried your solution but it still doesn't give the correct output as you can see below:

Aymane_0-1659615212772.png

 

Hi, @Aymane 

You are using a calculated column instead of measure column to display the result, so the final result is aggregated without recomputing.

You just need to change the summarize type of  calculated column 'Cumulative Count' from 'Sum' to 'Maximum'/'Minimum'/'Average'.

veasonfmsft_0-1661223298854.png

Best Regards,
Community Support Team _ Eason

amitchandak
Super User
Super User

@Aymane , a new column

CumulativeCount =
CALCULATE(
SUM(Fact_CRM_CT[Count]),
FILTER((Fact_CRM_CT),Fact_CRM_CT[DateKey] <= earlier(Fact_CRM_CT[DateKey]) ))

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.