Forum Discussion
newhopepdx
3 years agoResolver I
Matrix total not average
Visual is a matrix with Venues as rows and months as columns. Values are attendance totals. Measure calculates the Average monthly attendance. AvAtt = AVERAGEX( 'tblAttendance', 'tblAttendance'[At...
- 3 years ago
Hi newhopepdx
please try
AvAtt =
SUMX (
VALUES ( 'tblAttendance'[Venue] ),
CALCULATE ( AVERAGE ( 'tblAttendance'[Attendance] ) )
)
newhopepdx
3 years agoResolver I
Just curious... why the @before the Average? Just a personal convention, or does it have a more important meaning?
Thanks
tamerj1
3 years agoCommunity Champion
Just to distinguish between newly created columns and original data model measures.