Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have calculated Mean by site for all assets under one site
Now I need to create a line for Average on this chart which would give total Hours for all 4 sites combined/Total F for all 4 sites combined ( to comapre site average with total average)
Using the same Mean as line dosent help
Solved! Go to Solution.
// NOTE: Measures should never be preceded by
// the table name they sit in. On the other
// hand, columns should always be preceded
// with the name of the table they belong to.
Mean = DIVIDE( [Hours], [F] )
// Assuming that your measures aggregate
// correctly...
[Overall Mean] =
CALCULATE(
[Mean],
ALLSELECTED( T[Site] )
)
// or if the above doesn't work (but it should)...
[Overall Mean] =
DIVIDE(
CALCULATE(
[Hours],
ALLSELECTED( T[Site] )
),
CALCULATE(
[F],
ALLSELECTED( T[Site] )
)
)
// NOTE: Measures should never be preceded by
// the table name they sit in. On the other
// hand, columns should always be preceded
// with the name of the table they belong to.
Mean = DIVIDE( [Hours], [F] )
// Assuming that your measures aggregate
// correctly...
[Overall Mean] =
CALCULATE(
[Mean],
ALLSELECTED( T[Site] )
)
// or if the above doesn't work (but it should)...
[Overall Mean] =
DIVIDE(
CALCULATE(
[Hours],
ALLSELECTED( T[Site] )
),
CALCULATE(
[F],
ALLSELECTED( T[Site] )
)
)
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
6 | |
4 | |
3 | |
3 |
User | Count |
---|---|
13 | |
11 | |
8 | |
8 | |
8 |