Forum Discussion
Pan_Forex
Helper III
3 years agoAverage from every day
Hi guys! I wonder if it is possible to create a table that adds new rows every day and leaves the old ones unchanged. I have a table that is updated several times every day with new rows and a second...
amitchandak
Super User
3 years agoPan_Forex , try a measure with help from the date table
Cumm Sales = CALCULATE(AverageX(Values('Date'[Date]), CALCULATE(SUM(Table[Score]))) ,filter(all('Date'),'Date'[date] <=max('Date'[date])))
Pan_Forex
Helper III
3 years agoThank you for your reply. I would like the average to be calculated for each player separately and not all together from each day, and to create a new table with results only.