Forum Discussion
ArchStanton
Power Participant
3 years agoTable 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
Super User
3 years agoArchStanton , try a measure like
AVERAGEX(values(Date2[Month]),[Averages])
or
AVERAGEX(values(Date2[Month]),calculate(COUNT('Cases'[incidentid])))
ArchStanton
Power Participant
3 years agoMany thanks, they both work perfectly!