Forum Discussion
Anonymous
4 years agoNot applicable
calculate average per month
Hallo, I would like to calculate average per month but so far its constant (3.3π Completion 2022 = CALCULATE(AVERAGE('Daily Issues'[Completion_Time]),'Date Table'[Year]=MAX('Date Tabl...
sevenhills
Super User
4 years ago
Try this and see if it works...
Completion 2022 = AVERAGEX (
VALUES ('Date Table'[Year] )
, 'Daily Issues'[Completion_Time])
)
Replace, 'Date Table'[Year] with "YYYYMM" or "MMM" per your needs.