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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
AM103
New Member

How to calculate and display averages in a bar graph in power bi

Hi there, I'm extremely new to Power BI and certainly new here...I was just wondering if you could help me out with something. I want to display the Average of a data set over 13 Periods on a bar graph in Power BI. I created a very simple New Measure using AVERAGE, calling the data set whose Average I want to display. However, I'm unable to drag this to the X Axis to display as a 14th Period showing the Average (like a grand total, but instead it's the grand average). How do I do it?  

AM103_0-1703871637425.png

 

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @AM103 ,

I created some data:

vyangliumsft_0-1704078348510.png

 

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
var _column1=
DISTINCT('True'[Period])
var _column2=
{14}
return
UNION(
    _column1,_column2)

2. Create measure.

Measure =
IF(
    MAX('Table 2'[Period])=14,
 AVERAGEX(ALLSELECTED('True'),[Value])
   ,
    AVERAGEX(
        FILTER(ALLSELECTED('True'),'True'[Period]=MAX('Table 2'[Period])),[Value]))

3. Place the field in Visual.

vyangliumsft_1-1704078348513.png

X-axis – Type – X-axis -- Categorical

vyangliumsft_2-1704078398635.png

4. Result:

vyangliumsft_3-1704078398637.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

2 REPLIES 2
v-yangliu-msft
Community Support
Community Support

Hi  @AM103 ,

I created some data:

vyangliumsft_0-1704078348510.png

 

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
var _column1=
DISTINCT('True'[Period])
var _column2=
{14}
return
UNION(
    _column1,_column2)

2. Create measure.

Measure =
IF(
    MAX('Table 2'[Period])=14,
 AVERAGEX(ALLSELECTED('True'),[Value])
   ,
    AVERAGEX(
        FILTER(ALLSELECTED('True'),'True'[Period]=MAX('Table 2'[Period])),[Value]))

3. Place the field in Visual.

vyangliumsft_1-1704078348513.png

X-axis – Type – X-axis -- Categorical

vyangliumsft_2-1704078398635.png

4. Result:

vyangliumsft_3-1704078398637.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

123abc
Community Champion
Community Champion

Certainly! Displaying an average line on a bar graph in Power BI involves a combination of measures and visual adjustments. Here's a step-by-step guide to help you achieve this:

  1. Create Your Data Model: Ensure that your data model is correctly set up in Power BI with the necessary tables and relationships.

  2. Create a New Measure for Average: You mentioned you've created a new measure using the AVERAGE function. Let's call this measure AverageValue. Ensure that this measure is correctly calculating the average for your dataset.

  3. Create a New Table or Measure for Period: To represent the 14th period as an average line, you might need to introduce a new table or measure that represents this period.

  4. Use a Combo Chart: Instead of just using a bar chart, you might want to consider using a combo chart (column + line chart) to show the bars for each of the 13 periods and the average line for the 14th period.

  5. Add Average Line to the Combo Chart:

    • Drag your AverageValue measure onto the Values field of your combo chart.
    • In the Visualizations pane, under the Combo chart options, ensure you have both the clustered column chart and line chart types selected.
    • For the AverageValue measure in the Values field, set its chart type to a line.
  6. Adjust Axes and Scales:

    • Make sure the axes are consistent so that the average line is easily visible against the bar chart.
    • Adjust the scales and formats as needed to ensure clarity.
  7. Add Titles and Labels:

    • Add appropriate titles to your visualizations.
    • Consider adding a data label to the average line to clearly display the average value for the 14th period.
  8. Filtering and Interactivity:

    • If necessary, set up filters or slicers to allow users to interactively explore the data across different periods while still displaying the average line.

By following these steps, you should be able to create a bar graph in Power BI that displays the average of your dataset over 13 periods as a 14th period average line. Remember, Power BI offers a lot of flexibility in terms of visualizations and calculations, so you might need to adjust based on your specific dataset and requirements.

 

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.

 

In case there is still a problem, please feel free and explain your issue in detail, It will be my pleasure to assist you in any way I can.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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