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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
paul_jones
Frequent Visitor

Detailed Legend?

I'm looking to create a legend like the one in the picture or even a table.  I can seem to find a way.  Any help will be appreciated.

Picture1.png

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

Hi @paul_jones ,

 

Please try:

First, create a new table:

vjianbolimsft_7-1666836772132.png

Here is the M code:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("TY7NCsIwEIRfpeTcQ/62ac4KoqgHr6WHSFIMpElpqM/vrj3oZQZm9mNnGJhQtmMtkwIM2iVMU1hrye+YUmBjOzBtucamUyjHUJtbiTnUb9X3llItUO6uvn6QEBo4poqq0+qybx5uiX7npDaSQCMB0K5li/XvoQFNWwQ3dHTOPrrslpLiTgPvVE+TOcGHkrb5uWE1fgA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Rx Cards" = _t, #"Pre-Pack" = _t, #"X-axis" = _t]),
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(Source, {"X-axis"}, "Attribute", "Value"),
    #"Pivoted Column" = Table.Pivot(#"Unpivoted Columns", List.Distinct(#"Unpivoted Columns"[#"X-axis"]), "X-axis", "Value")
in
    #"Pivoted Column"

Then create a table visual and conditional format the [Attribute] column, here is the measure:

Color = IF(MAX('Table (2)'[Attribute])="Pre-Pack","Green","Blue")

vjianbolimsft_8-1666837185414.png

vjianbolimsft_9-1666837207173.png

Then turn off the totals of the table visual:

vjianbolimsft_10-1666837341497.png

Move the table visual to the stacked column chart:

vjianbolimsft_11-1666837379081.png

 

Best Regards,

Jianbo Li

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-jianboli-msft
Community Support
Community Support

Hi @paul_jones ,

 

Please try:

First, create a new table:

vjianbolimsft_7-1666836772132.png

Here is the M code:

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("TY7NCsIwEIRfpeTcQ/62ac4KoqgHr6WHSFIMpElpqM/vrj3oZQZm9mNnGJhQtmMtkwIM2iVMU1hrye+YUmBjOzBtucamUyjHUJtbiTnUb9X3llItUO6uvn6QEBo4poqq0+qybx5uiX7npDaSQCMB0K5li/XvoQFNWwQ3dHTOPrrslpLiTgPvVE+TOcGHkrb5uWE1fgA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Rx Cards" = _t, #"Pre-Pack" = _t, #"X-axis" = _t]),
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(Source, {"X-axis"}, "Attribute", "Value"),
    #"Pivoted Column" = Table.Pivot(#"Unpivoted Columns", List.Distinct(#"Unpivoted Columns"[#"X-axis"]), "X-axis", "Value")
in
    #"Pivoted Column"

Then create a table visual and conditional format the [Attribute] column, here is the measure:

Color = IF(MAX('Table (2)'[Attribute])="Pre-Pack","Green","Blue")

vjianbolimsft_8-1666837185414.png

vjianbolimsft_9-1666837207173.png

Then turn off the totals of the table visual:

vjianbolimsft_10-1666837341497.png

Move the table visual to the stacked column chart:

vjianbolimsft_11-1666837379081.png

 

Best Regards,

Jianbo Li

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

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors