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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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