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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors