Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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] )
)
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |