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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Pmags
Frequent Visitor

Developing a Radar Chart

I'm trying to make a Radar Chart using the average of several attributes in comparison to the average satisfactory level for each attribute.

 

I also want the data to have a splicer by year and department so what I'm thinking is to have a source table and make a new table using data from the source table.

 

 

Currently the source table looks like this:

A.png

 

 

 And I want to make a new table in PowerBi that'll look like this:

B.png

 

 I can then use this to make the spider chart but I still haven't figured out how to aggregate data from the source table to create the new table.

 

 

I'm sort of new using PowerBi so please help 😞

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Pmags,

 

Do you want to create slicers using department and year fields  and then use the slicers to filter the New table? If that is the case, as there is no relationship between new table and source table, the slicers will not work.

You can perform the following steps to achieve your requirement.

1. Duplicate a query of your source table and rename the query to NewTable in Query Editor of Power BI Desktop.
1.PNG

2. Select the three columns (Efficacy, Resillience, Sustainability), then click “Unpivot columns” in the following screenshot.
2.PNG

3. Rename the “Attribute” column to Criteria.
3.PNG

4. Add a custom column named “Average Of satisfactory” and set the value  of it to 3.
5.PNG

5. Create a table using fields in NewTable, and make sure that select “Average” for value field.
6.PNG

6. Create slicer using department and year fields in source table and using them to filter the table visual. Power bi Desktop create relationship between NewTable and source table using Project field, thus it is ok to filter the table visual using the department and year slicers.
7.PNG

 


Thanks,
Lydia Zhang

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @Pmags,

 

Do you want to create slicers using department and year fields  and then use the slicers to filter the New table? If that is the case, as there is no relationship between new table and source table, the slicers will not work.

You can perform the following steps to achieve your requirement.

1. Duplicate a query of your source table and rename the query to NewTable in Query Editor of Power BI Desktop.
1.PNG

2. Select the three columns (Efficacy, Resillience, Sustainability), then click “Unpivot columns” in the following screenshot.
2.PNG

3. Rename the “Attribute” column to Criteria.
3.PNG

4. Add a custom column named “Average Of satisfactory” and set the value  of it to 3.
5.PNG

5. Create a table using fields in NewTable, and make sure that select “Average” for value field.
6.PNG

6. Create slicer using department and year fields in source table and using them to filter the table visual. Power bi Desktop create relationship between NewTable and source table using Project field, thus it is ok to filter the table visual using the department and year slicers.
7.PNG

 


Thanks,
Lydia Zhang

Phil_Seamark
Microsoft Employee
Microsoft Employee

Here is one approach in DAX. 

 

Not sure where your Satisfactory aggregation comes from your sample data, so I hard coded it to 3.  But if you share more we can probably fix that for you.

 

New Table = UNION (
                    --- Efficacy ----
                    SUMMARIZECOLUMNS(
                        "Criteria" , "Efficacy", 
                        "Average Value" , AVERAGE(SourceTable[Efficacy]),
                        "Average Of satisfactory" , 3 )
                        ,
                    --- Resilience ----    
                    SUMMARIZECOLUMNS(
                        "Criteria" , "Resilience", 
                        "Average Value" , AVERAGE(SourceTable[Resillience]),
                        "Average Of satisfactory" , 3 )  ,                      
                    --- Sustainability ----    
                    SUMMARIZECOLUMNS(
                        "Criteria" , "Sustainability", 
                        "Average Value" , AVERAGE(SourceTable[Sustainability]),
                        "Average Of satisfactory" , 3 )                                
                        )

To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

The satisfactory aggregation is just a mandatory amount for each attribute. It isn't computed. I was able to make the exact same table which I referenced in the original post (thanks to your code!) to develop the radar chart but an issue came up. Since I want to make a splicer by DEPARTMENT and by YEAR I made a splicer using the data from the Source Table since the department and year was listed there hoping that the aggregation would automatically adjust given that the New Table used data from the Source Table but it isn't working. Any ideas?

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

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

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.