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

Get total sum per month from cumulative value

Hi everyone,

 

I've been struggeling with something. I want a calculated column that calculates the sales of that month based on the cumulitive sales.

 

ID      Month Year   CumAmount      Sales

1484   2019-jan      120000               -

1484   2019-feb      130000               10000

1484   2019-mar     135000               5000

 

Unfortunately I don't have a datevalue in the same row, but I do have "2019-jan", "2019-feb" etc. that I have connected with the same data format in a calendar table.

Can someone help me out?

 

 

1 ACCEPTED SOLUTION
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,

For your requirement, please create an index column in Query Editor firstly and then create the calculated column with the formula below.

Column =
VAR a =
    CALCULATE (
        MAX ( 'Table1'[CumAmount] ),
        FILTER ( ALL ( 'Table1' ), 'Table1'[Index] = EARLIER ( Table1[Index] ) - 1 )
    )
RETURN
    IF ( ISBLANK ( a ), BLANK (), 'Table1'[CumAmount] - a )

Here is the output.

ou.PNG

You also could have a reference of my attachement.

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,

For your requirement, please create an index column in Query Editor firstly and then create the calculated column with the formula below.

Column =
VAR a =
    CALCULATE (
        MAX ( 'Table1'[CumAmount] ),
        FILTER ( ALL ( 'Table1' ), 'Table1'[Index] = EARLIER ( Table1[Index] ) - 1 )
    )
RETURN
    IF ( ISBLANK ( a ), BLANK (), 'Table1'[CumAmount] - a )

Here is the output.

ou.PNG

You also could have a reference of my attachement.

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hello,

I have the same problem but the other way round...

I have the sales amount per month and would like to show on graph the cumulative.

For exemple :

Feb=Jan+Feb

March=Jan+Feb+March

... and so on.

Could you please help me ?

 

Thanks,

Anonymous
Not applicable

Hi,

 

You can create a calculated column for that;

Running Total COLUMN =
CALCULATE (
    SUM ( 'TableName'[Value] ),
    ALL ( 'Tablename' ),
    'TableName'[Date] <= EARLIER ( 'TableName'[Date] )
)

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.