Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
newhopepdx
Helper III
Helper III

Monthly 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.

 

The event category slicer seems to be causing the issue. There are two event categories: Regular & Special.

The image below shows the problem: With "Select All" as the category filter the average is 847, while the largest single date attendance is 826. Weird!  If the slicer is set to Regular, the average is accurate. What could be causing this?

 

Here's a link to files: https://www.dropbox.com/scl/fo/nplilnajf5s5nnvaaathy/h?rlkey=gb19rx380m2k3t2mtolyp33h1&dl=0

Steve

Attendance - Power BI Desktop.jpg

3 REPLIES 3
jdbuchanan71
Super User
Super User

Can you just use

 

Average Attendance = AVERAGE ( 'Attendance'[Attendance] )

 

 

jdbuchanan71
Super User
Super User

Because you are taking the average at the venue level then adding those all up:

AverAttendance = 
    SUMX (
        VALUES ( 'Attendance'[Venue] ),
        CALCULATE ( AVERAGE ( 'Attendance'[Attendance] ) )
)

jdbuchanan71_0-1701122975802.png

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.

Ok, I see how that work, but then what is the proper measure definition?

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors