Forum Discussion
evadung
3 years agoFrequent Visitor
Moving average excluding days without data
Hello, I have this chart with moving average. I dont want to see 4th and 5th day because theres no data (theres more date without data, 4th and 5th is for example). I have no clue what to do. ...
- 3 years ago
Moving average % =IF( [Produktivität],
averagex(FILTER(ALLSELECTED(Kalender),Kalender[Datum] <= MAX(Kalender[Datum])),[Produktivität]))
wdx223_Daniel
3 years agoCommunity Champion
Moving average % =IF( [Produktivität],
averagex(
FILTER(ALLSELECTED(Kalender),
Kalender[Datum] <= MAX(Kalender[Datum])),
[Produktivität]))
evadung
3 years agoFrequent Visitor
Works! Thank you!