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
ashc_cool10
Helper III
Helper III

Cumulative total by Month

Hi There,

Hope you are doing well.

I am trying to create on measure where i want Cummulative total of amount by per month.

I have month and year column which is in Text format and i want am not sure how to create cummlative total as i dont have any date available.

Please see below table with sample data . I am expecting the result is which is in "Cummulative Total " coulumn.

 

cummulative total.JPG

 

Request you to please help me in the same @Ashish_Mathur 

 

Thanks,

Ashish

1 ACCEPTED SOLUTION
Greg_Deckler
Super User
Super User

@ashc_cool10 You can create a column like this:

YearMonth = [Year] * 100 + [Month]

Then use something like this:

Better Running Total - Microsoft Power BI Community


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

5 REPLIES 5
Greg_Deckler
Super User
Super User

@ashc_cool10 You can create a column like this:

YearMonth = [Year] * 100 + [Month]

Then use something like this:

Better Running Total - Microsoft Power BI Community


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hi @Greg_Deckler 

 

Thank you ever so much for your quick response. The solution which you provided works .

Thanks alot.

 

Cheers!

Ashish

MohammadLoran25
Super User
Super User

Hi @ashc_cool10 ,

 

Follow these steps:

 

1-Create a calculated column in your table as:

 

YearMonth = CONVERT(CONCATENATE(TABLEofSales[Year],IF(TABLEofSales[Month]<10,CONCATENATE("0",TABLEofSales[Month]),TABLEofSales[Month])),INTEGER)
 
2-Then Create another Calculated Column:
 
YearMonthOrderIndex = RANKX(TABLEofSales,TABLEofSales[YearMonth],TABLEofSales[YearMonth],ASC,DENSE)
 
Then Create the measure below to achieve your desired result:
 
CumulativeSales =
CALCULATE (
    SUM ( TABLEofSales[Amount] ),
    FILTER (
        ALL ( TABLEofSales ),
        TABLEofSales[YearMonthOrderIndex] <= MAX ( TABLEofSales[YearMonthOrderIndex] )
    )
)
 
If this answer solves your problem, please mark it as an accepted solution so the others would find what they need easier.
Regards,
Loran

Hi @MohammadLoran25,

Thank you for the solution . I will try this one also as i was in a hurry and tried above and that works for me. 

But thank you for the solution

You're welcome.

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.