Forum Discussion
ArchStanton
3 years agoPower Participant
Table Average Required
The following code gives me the Average for each month going back 3 Financial Years (FY exists in my Date Table) Averages =
VAR _table = SUMMARIZE(Date2,Date2[FY],"Count",COUNT('Cas...
- 3 years ago
ArchStanton , try a measure like
AVERAGEX(values(Date2[Month]),[Averages])
or
AVERAGEX(values(Date2[Month]),calculate(COUNT('Cases'[incidentid])))
amitchandak
3 years agoSuper User
ArchStanton , try a measure like
AVERAGEX(values(Date2[Month]),[Averages])
or
AVERAGEX(values(Date2[Month]),calculate(COUNT('Cases'[incidentid])))
- ArchStanton3 years agoPower ParticipantMany thanks, they both work perfectly!