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
ujjwalkc
New Member

Additional average bar on a clustered bar chart

I have a dataset for Australia for various variables. The data is at suburb label with data on states as well. I have created a clustered bar chart in powerbi for all the variables for a selected suburb. I want to add bars for average values in overall Australia and the state of the selected suburb as well. How do i do this in powerbi?

 

Example DataSets:

 

SubUrb | State| Age under 18 | age 18-60 | age 60+

ABC |DEF | 10 | 20 | 30

 

Steps and demonstration highly welcome!

2 REPLIES 2
FreemanZ
Super User
Super User

hi @ujjwalkc 

supposing your table looks like:

StateSubUrg0-1818-6060+
AA1102030
AA2100200300
BB1123

 

try to:

1) unpivot it to a table like:

FreemanZ_0-1683870714737.png

About unpivot: https://learn.microsoft.com/en-us/power-query/unpivot-column

2) plot a slicer with the suburb column

3) plot a clustered column chart with necessary columns and feed two measures as constant line like:

 

 

StateAvg = 
CALCULATE(
    AVERAGE(data[Count]),
    ALL(data),
    data[State]=MAX(data[State])
)
CountryAvg = 
CALCULATE(
    AVERAGE(data[Count]),
    ALL(data)
)

 

 

it worked like:

FreemanZ_1-1683870911154.png

FreemanZ_2-1683870927937.png

FreemanZ_3-1683870941193.png

 

 

Thanks so much!  But, I wanted the values for the state and the country as an additional bar in the clustered bar chart. On top of that, I want the legend to have the selected suburb, state and Australia as legend items. CHeers!

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.