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
joc
Helper I
Helper I

Cumulative values

Hello everybody,

 

I need your help for a problem. I would like a CUMULATIVE_VALUE in my table. This value is cumulate in fonction of the WEEK and the MONTH.

It's easier to understand with tables :

 

I have this table :

montab0.jpg

 

And I would like this table with the new column :

montab1.jpg

 

Thank a lot for the help !

Joc

2 ACCEPTED SOLUTIONS
v-shex-msft
Community Support
Community Support

Hi @joc,

 

You can use year and month column to create a date column ,then use it as the index to calculate the rolling total.

 

Sample:

Date = DATEVALUE([Month]&" "&[Year])

6.PNG

 

 

Cumulative values:

 

Rolling Total = CALCULATE(SUM(Sheet4[Value]),FILTER(ALL(Sheet4),[Year]=EARLIER(Sheet4[Year])&&[Week]=EARLIER(Sheet4[Week])&&[Date]<=EARLIER(Sheet4[Date])))

 

7.PNG

 

Regards,

XIaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

5 REPLIES 5
v-shex-msft
Community Support
Community Support

Hi @joc,

 

You can use year and month column to create a date column ,then use it as the index to calculate the rolling total.

 

Sample:

Date = DATEVALUE([Month]&" "&[Year])

6.PNG

 

 

Cumulative values:

 

Rolling Total = CALCULATE(SUM(Sheet4[Value]),FILTER(ALL(Sheet4),[Year]=EARLIER(Sheet4[Year])&&[Week]=EARLIER(Sheet4[Week])&&[Date]<=EARLIER(Sheet4[Date])))

 

7.PNG

 

Regards,

XIaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

@v-shex-msft  Perfect ! Thanks !

vanessafvg
Super User
Super User

@joc to create a cummulative value you will either need an index in your table in the correct sequence or alternatively have a separate date table that links to your table





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




Thank you @vanessafvg

 

I add a new row "SORT" where JANUARY=1, FEBRUARY=2... but the résult is not good.

 

CUMULATIVE_VALUE = 
VAR sort = 'table'[SORT]
RETURN
    CALCULATE (
        SUM ( 'table'[VALUE] );
        FILTER (
            'table';
            'table'[SORT] <= SORT
        )
    )

I don't know how take into account the WEEK !

Thank you for the help,

Joc

 

@joc that doesn't sound right each row must have a unique index

 

 

 





If I took the time to answer your question and I came up with a solution, please mark my post as a solution and /or give kudos freely for the effort 🙂 Thank you!

Proud to be a Super User!




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.