Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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?
Solved! Go to Solution.
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] )
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @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] )
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsOMG!! 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 😁
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 7 | |
| 7 | |
| 5 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 14 | |
| 14 | |
| 10 | |
| 8 | |
| 8 |