Forum Discussion
filtering a skill matrix
Assuming your skills are numeric (if not, you can use Greg_Deckler method to create a new calculated column) and the range is from 1 to 5 you can make a star rating with the measure
Avg Skill 1 = REPT(UNICHAR(9733), ROUND(AVERAGE(Skillz[skillz 1]),0)) & REPT(UNICHAR(9734), 5-ROUND(AVERAGE(Skillz[skillz 1]),0))
For max use function MAX instead of AVERAGE.
If the range goes say to 4 replace the 5 in the measure with 4.
You result could look like:
- hummes8 years agoRegular Visitor
Thanks for your help.. I manged to draw a quite nice and comprehensive spider chart.
I have countries as the "pillars" of the web and have the average and max skill values as "y-axxis" values.
I now want to add a slicer to make this less complex to view. But l ran into the following problems
1. I want to select "Skill 1" in a list and the average and max value should be displayed in the chart. So 1 entry in the slicer controlling 2 dataset on the chart -> is this possible?
2. I have no data field to use as a "skill list" to select from. How can I create such a list for a slicer.
I tried to add a column "Skills" with all the skills as rows. But this is not linked to my data. How to manage this?
- hummes8 years agoRegular Visitor
OR:
Is it possible to configure the legend of a chart in such way that only the selected (multiselected) item is displayed?
Default behaviour is "fading out the others" which is not sufficient.
- Ashish_Mathur8 years agoSuper User
Hi hummes,
Your data is not well structured. It should be a 4 column dataset - Name, Country. Skills and Value. You should select the first two columns in the Query Editor and then unpivot the others columns. Then you will be able to use slicers.
Hope this helps.
- hummes8 years agoRegular VisitorYes you are right. But i get the data like this.
Ist there any Nice way to restructure the data automatical?