Forum Discussion
Anonymous
3 years agoNot applicable
Moving average without date and a condition
Hi together, I would like to calculate the moving average with the formula above with the condition that the interval between the indizes which I use for the calculation equals the variable days al...
- 3 years ago
Anonymous , Create a separate index table and join back to this table
And try a new measure like
Calculate(
AVERAGE(Table1, 'Table1'[Value]),
FILTER(
'Index',
'Index'[Index] > max('Index'[Index]) -3 &&
'Index'[Index] <= max('Index'[Index])
)
)
amitchandak
3 years agoSuper User
Anonymous , Create a separate index table and join back to this table
And try a new measure like
Calculate(
AVERAGE(Table1, 'Table1'[Value]),
FILTER(
'Index',
'Index'[Index] > max('Index'[Index]) -3 &&
'Index'[Index] <= max('Index'[Index])
)
)