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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

power bi

Screenshot (121).png

First i want to remove week 0 from the table and then 

 need to find the Cummulative Average of Cummulative Total Column

 Cummulative Total Column -- Measure (not a column)

 

Output to be like

Cumulative average

0.71   explanation ( .71)

0.72     explanation ( 0.71+0.72 = 0.143 -> 0.143/2 --> 0.72)

0.74

 

 

 

can anyone help me with this?

1 ACCEPTED SOLUTION
MFelix
Super User
Super User

Hi @Anonymous ,

 

Try to do the following:

Cumulative Average = 
VAR WEEKNUMBER =
    MAX ( TableTotal[Week] )
VAR temp =
    SUMMARIZE (
        ALL ( TableTotal ),
        TableTotal[Week],
        "CumulativeTotal", [Cumulative Total]
    )
VAR Result =
    FILTER ( temp, TableTotal[Week] <= WEEKNUMBER && TableTotal[Week] > 0 )
RETURN
    AVERAGEX ( Result, [CumulativeTotal] )

 

MFelix_0-1640874899816.png

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



View solution in original post

2 REPLIES 2
MFelix
Super User
Super User

Hi @Anonymous ,

 

Try to do the following:

Cumulative Average = 
VAR WEEKNUMBER =
    MAX ( TableTotal[Week] )
VAR temp =
    SUMMARIZE (
        ALL ( TableTotal ),
        TableTotal[Week],
        "CumulativeTotal", [Cumulative Total]
    )
VAR Result =
    FILTER ( temp, TableTotal[Week] <= WEEKNUMBER && TableTotal[Week] > 0 )
RETURN
    AVERAGEX ( Result, [CumulativeTotal] )

 

MFelix_0-1640874899816.png

 


Regards

Miguel Félix


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!

Check out my blog: Power BI em Português



Anonymous
Not applicable

OMG!! YES ITS WORKING!!! SMARTEST Solution. I worked two days on this.. I REALLY DONT KNOW HOW TO THANK YOU!!!. OH MY LORD!!!  Is there any way i can connect with u on LINKEDIN pls?? THANKSSSS A TON 😁

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors