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

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.

Reply

Radar chart to create default values for comparison operation

Hi Team,
Source table

Data Set 1
CategoryDateRedGreenYellowWhite
ABC8/15/202252.53.51.5
DEF8/15/20224.45.27.42.5
GEF8/15/20225.15.84.44.4
HIJ8/15/20225.86.45.15.1
Data Set 2
CategoryDateRedGreenYellowWhite
XYZ8/15/20223462
PQR8/15/20223.74.61.84.7

 

i want to create a Radar chart below are the filters and chart  
Radar chart- Category-Category field Values -Red Green Yellow White
Filter- Category column
Filter - Date Column

but my condition is i always want to see dataset2 (XYZ and PQR) in radar char whenever i filtered any category from the category filter because i want compare my first datas

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @anshenterprice ,

 

I suggest you to create an unrelated dim category table for slicer and then create a measure to filter your Radar chart.

My Sample:

RicoZhou_0-1661751798958.png

Measure:

Measure = 
IF(
ISFILTERED('Dim Category'[Category]),
IF(MAX('Source table'[Category]) in VALUES('Dim Category'[Category]) || MAX('Source table'[Data Set]) = "Data Set 2",1,0),
1)

Add this measure into visual level filter and set it to show items when value = 1. Result is as below.

RicoZhou_1-1661751851733.png

 

Best Regards,
Rico Zhou

 

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
Anonymous
Not applicable

Hi @anshenterprice ,

 

I suggest you to create an unrelated dim category table for slicer and then create a measure to filter your Radar chart.

My Sample:

RicoZhou_0-1661751798958.png

Measure:

Measure = 
IF(
ISFILTERED('Dim Category'[Category]),
IF(MAX('Source table'[Category]) in VALUES('Dim Category'[Category]) || MAX('Source table'[Data Set]) = "Data Set 2",1,0),
1)

Add this measure into visual level filter and set it to show items when value = 1. Result is as below.

RicoZhou_1-1661751851733.png

 

Best Regards,
Rico Zhou

 

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

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.