Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

6 Week average Measure

Hello, I am trying to get the 6-week average but need to remove the current date, looking at the past 6 Wednesdays and that would change as the week progresses. What is the best way to remove the cur...
  • amitchandak's avatar
    amitchandak
    6 years ago

    Check if these can help

    AVG Total Loads = AVERAGEX(filter(values(Dates[Date].[Date]),Dates[Date]<Today()),[Total Loads])
    
    AVG Total Loads = calculate(AVERAGEX(values(Dates[Date].[Date])),[Total Loads],filter(all(Dates),Dates[Date]<Today()))