Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hey everyone! Powerbi newbie here. I'm not sure if this is possible but I'll post my question below:
For context, this was an employee experience survey and I want to display information in a radar chart. There are 2 things I want to display:
1. An overall score (Labelled - Importance).
2. The overall score divided by department (back-end, mid-end, front-end).
Here is an image of what I want:
I am able to do this by creating a separate measure of the same value and putting it in the values tab. The issue is that this then results in there being 6 items in the legend (Eg. Importance - front-end/mid-end/back-end, Overall Importance - front-end/mid-end/back-end) where as the result I want is to only have 4 items in the legend (Eg. Value - front-end/mid-end/back-end, Overall Value)
Below is an image of what happens:
Below is an image of what I want:
How might I achieve what I want?
If there is anything that isn't clear/any other info needed let me know. Thanks!
Hey @Anonymous. Thanks for the help.
My data set does not contain any dates so I don't think the formula with MONTH will work. I've attached images of my data set below.
Fact Table:
Dimension Table:
Does the formula need to be altered to fit this dataset? Thanks for the help.
Best Regards,
Data_Hero
Hi @Data_Hero ,
I created some data:
Table:
Table2:
Visual:
Here are the steps you can follow:
1. You can use Enter data to create a table.
2. Create measure.
Measure =
SWITCH(
TRUE(), MAX('Table2'[Group1])="A",CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),'Table'[Group]="A"&&MONTH('Table'[Date])=MONTH(MAX('Table'[Date])))) ,
MAX('Table2'[Group1])="B", CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),'Table'[Group]="B"&&MONTH('Table'[Date])=MONTH(MAX('Table'[Date])))) ,
MAX('Table2'[Group1])="C", CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),'Table'[Group]="C"&&MONTH('Table'[Date])=MONTH(MAX('Table'[Date])))) ,
MAX('Table2'[Group1])="D", CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),'Table'[Group]="D"&&MONTH('Table'[Date])=MONTH(MAX('Table'[Date])))) ,
MAX('Table2'[Group1])="E", CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),'Table'[Group]="E"&&MONTH('Table'[Date])=MONTH(MAX('Table'[Date])))) )
Flag = IF(
MAX('Table2'[lndex])<=3,1,0)
3. Place [Flag]in Filters, set is=1, apply filter.
4. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.