Forum Discussion
Anonymous
4 years agoNot applicable
power bi
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 l...
- 4 years ago
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
4 years agoSuper 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] )
Anonymous
4 years agoNot 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 😁