Forum Discussion

Foxxon28's avatar
Foxxon28
Icon for Helper I rankHelper I
2 years ago
Solved

Cumulative Sales Sum based on Specific Column and Rule

Dear reader,

 

I have a dataset as follows:

 

YearDate ( Once Per Month )Month_progressSales
202430-11-2023-110
202431-12-2023020
202431-01-2024130
202330-11-2022-115
202331-12-2022025
202331-01-2023135

 

What I want to create is a line chart with the Cumu. Sales on the Y axis and the Month_Progress on the X axis (filtered by >= 0).
For each year I show a different line.

What I want to calculate is the cumulative sales, based on the year, where the cumulation should include every month_progress, also the ones < 0

 

Expected result: 

Red line (2024) Month 0 = 10 + 20 
Blue line (2023) Month 1 = 15 + 25 +35 

 

What type of measure do I need to write for this?

I would like to hear from you.

 

Kind regards,

Daniël

  • Foxxon28 PBIX is attached below signature.

    Sales Measure = 
        VAR __MP = MAX('Table'[Month_progress])
        VAR __Year = MAX('Table'[Year])
        VAR __Table = FILTER(ALL('Table'), [Month_progress] <= __MP && [Year] = __Year)
        VAR __Result = SUMX(__Table, [Sales])
    RETURN
        __Result

     

4 Replies