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

The Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.

Reply
SimaoCoimbra
Frequent Visitor

Cumulative Sum by Year and Month or Only by Month when no Year is selected

Hello everyone,

I have a measure that calculates the monthly value, and then I have another measure that calculates the accumulated total, which is working correctly

Image_With_Filter.png

Cumulative Measure:

Valor_OIL_Acumul =
IF (
MIN ( 'date'[Month Number] )
<= CALCULATE ( MAX ( table[Date] ), ALL ( table) ),
CALCULATE (
        [Month Total Measure],
       FILTER (
        ALL ( 'date' ),
         'date'[Year] = MAX ( 'date'[Year] )
         && 'date'[Date] < MAX ( 'date'[Date] )
                                    )
                 )
)
 
 
The problem exists when no year is selected:
 
Image_Without_Filter.png
 
I would like the final result to be the following:   12 075.214 
                                                                              41 779.905
                                                                                ....
 
 
Thank you very much in advance,
Simao Coimbra
1 ACCEPTED SOLUTION
v-janeyg-msft
Community Support
Community Support

Hi, @SimaoCoimbra 

 

According to your description, The idea is to add a column to the virtual table. This column is the column equivalently converted from [Month Total Measure], and then calculate the cumulative value of this new column on the basis of this table.
Like this:

measure=
var t =
summarize(
   All(table),
   table[month number],
   "Month Total",
   xxx(Convert Month Total Measure to Month Total column)
)
var tab = 
addcolumns(
   t,
   "Cumu",
   sumx(
      filter(
          t,
          [month number]<=earlier(table[month number])
      ),
      [Month Total]   
   )
)
return
sumx(
  filter(
      tab,
      [month number] = selectedvalue[month number]
  ),
  [Cumu]
)

If it doesn’t solve your problem, please share some sample data and feel free to ask me.

 

Best Regards

Janey Guo

 

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

2 REPLIES 2
v-janeyg-msft
Community Support
Community Support

Hi, @SimaoCoimbra 

 

According to your description, The idea is to add a column to the virtual table. This column is the column equivalently converted from [Month Total Measure], and then calculate the cumulative value of this new column on the basis of this table.
Like this:

measure=
var t =
summarize(
   All(table),
   table[month number],
   "Month Total",
   xxx(Convert Month Total Measure to Month Total column)
)
var tab = 
addcolumns(
   t,
   "Cumu",
   sumx(
      filter(
          t,
          [month number]<=earlier(table[month number])
      ),
      [Month Total]   
   )
)
return
sumx(
  filter(
      tab,
      [month number] = selectedvalue[month number]
  ),
  [Cumu]
)

If it doesn’t solve your problem, please share some sample data and feel free to ask me.

 

Best Regards

Janey Guo

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you very much @v-janeyg-msft. You've saved my week!

Helpful resources

Announcements
Feb2025 Sticker Challenge

Join our Community Sticker Challenge 2025

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

Jan NL Carousel

Fabric Community Update - January 2025

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