Forum Discussion
newhopepdx
Resolver I
2 years agoMonthly average greater than the largest single input. Why?
I have started an event attendance report showing total attendance by event date to various events and a bar graph showing the average monthly, quarterly or yearly total attendance per event date. ...
jdbuchanan71
Super User
2 years agoBecause you are taking the average at the venue level then adding those all up:
AverAttendance =
SUMX (
VALUES ( 'Attendance'[Venue] ),
CALCULATE ( AVERAGE ( 'Attendance'[Attendance] ) )
)
The first one is just the straight avg so you can see that it is correct at the venue level. Then you add all those up and get 847.
- newhopepdx2 years ago
Resolver I
Ok, I see how that work, but then what is the proper measure definition?