Forum Discussion

anshenterprice's avatar
4 years ago
Solved

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

  • Anonymous's avatar
    Anonymous
    4 years ago

    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:

    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.

     

    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.

1 Reply

  • Anonymous's avatar
    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:

    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.

     

    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.