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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
WTAS80486
Helper IV
Helper IV

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
Solution Sage
Solution Sage

// 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
Solution Sage
Solution Sage

// 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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors