Forum Discussion
Anonymous
4 years agoNot applicable
Moving Average with fixed first date
Dear Community, How can I count a kind of a moving averge that works likes this: First date is fixed and the average is counted on adding every next date's data as it procceeds. For example: I h...
- 4 years ago
Hi Anonymous ,
Please try the following measure:
Moving Average = VAR FirstID = FIRSTNONBLANKVALUE ( 'Table'[Date], MAX ( 'Table'[ID] ) ) VAR firstWeight = FIRSTNONBLANKVALUE ( 'Table'[Date], SUM ( 'Table'[Weights] ) ) VAR Ave = CALCULATE ( AVERAGE ( 'Table'[Weight / pack] ), FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] <= MAX ( 'Table'[Date] ) ) ) RETURN IF ( AND ( FirstID <> BLANK (), ISNUMBER ( firstWeight ) ), Ave, "-" )If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-kkf-msft
Community Support
4 years agoHi Anonymous ,
Please try the following measure:
Moving Average =
VAR FirstID = FIRSTNONBLANKVALUE ( 'Table'[Date], MAX ( 'Table'[ID] ) )
VAR firstWeight = FIRSTNONBLANKVALUE ( 'Table'[Date], SUM ( 'Table'[Weights] ) )
VAR Ave =
CALCULATE (
AVERAGE ( 'Table'[Weight / pack] ),
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[Date] <= MAX ( 'Table'[Date] ) )
)
RETURN
IF ( AND ( FirstID <> BLANK (), ISNUMBER ( firstWeight ) ), Ave, "-" )
If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.