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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

Inserting multiple groups within the x axis

Hi is there any possible way to group multiple column fields within the x axis? I was hoping to show columns urban, rural and town where a field may contain 0 or 1

as shown in the image: image

The here is how the column works:

Urban | Rural | Town

0            1           0

1            0           0

0            0           1

So in effect, it should make 3 bars, but it only shows the value for urban 1 and 0. Hope you can help me as I'm still trying to figure out how power BI works. Thank you.

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

Hi @Anonymous 

 

Not sure if you'd like to get below result:

8.PNG

You'll need to make some transformation in power query. 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlDSUTIEYgOlWJ1oKAvGM4DyDJViYwE=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [#"Urban " = _t, Rural = _t, Town = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Urban ", Int64.Type}, {"Rural", Int64.Type}, {"Town", Int64.Type}}),
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(#"Changed Type", {}, "Attribute", "Value")
in
    #"Unpivoted Columns"

Pbix attached.

 

Community Support Team _ Dina Ye
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

1 REPLY 1
v-diye-msft
Community Support
Community Support

Hi @Anonymous 

 

Not sure if you'd like to get below result:

8.PNG

You'll need to make some transformation in power query. 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlDSUTIEYgOlWJ1oKAvGM4DyDJViYwE=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [#"Urban " = _t, Rural = _t, Town = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Urban ", Int64.Type}, {"Rural", Int64.Type}, {"Town", Int64.Type}}),
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(#"Changed Type", {}, "Attribute", "Value")
in
    #"Unpivoted Columns"

Pbix attached.

 

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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