cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
WTAS80486
Advocate II
Advocate II

Creating average as a line in line and bar chart

I have calculated Mean by site for all assets under one site

 

Mean = DIVIDE('Table'[Hours],Table[F]) , Hours and F are measures in Table
 
This gives Mean for each site

 

Ankita80486_0-1660857349000.png

 

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

 

Ankita80486_1-1660857860856.png

 

 

1 ACCEPTED SOLUTION
daXtreme
Super User
Super User

// 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] )
  )
)

View solution in original post

2 REPLIES 2
daXtreme
Super User
Super User

// 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] )
  )
)

@daXtreme Thank you!

Helpful resources

Announcements
May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Submit your Data Story

Data Stories Gallery

Share your Data Story with the Community in the Data Stories Gallery.

Top Solution Authors