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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
msuser48
Helper I
Helper I

Change the field value displayed when I hover over a data point

I have a radar chart with data points.

 

When I hover over each data point, it displays a column and its value, which I get from using a Measure.

- For example: "Score 1.00" it could say.

 

The measure I use is: "AvgScore = AVERAGE('Table1'[Score]). Output will ALWAYS either be 1.00 , 2.00 or 3.00. Output can be nothing else.

 

Instead of this, I need the output to be either 1 - Bad (if the value is 1.00) or 2 - Average (if the value is 2.00) or 3 - Good (if the value is 3.00).

 

So, maybe this is quite simple. But how do I do this?

1 ACCEPTED SOLUTION
v-yalanwu-msft
Community Support
Community Support

Hi, @msuser48 ;

You could create a measure then create a tooltip page.

Measure = SWITCH(MAX('Table'[Score]),1,"Bad",2,"Average",3,"Good")

then create a tooltip page.

vyalanwumsft_0-1665716242590.png

vyalanwumsft_1-1665716263874.png

 

The final show:

vyalanwumsft_2-1665716279308.png

vyalanwumsft_3-1665716310236.png


Best Regards,
Community Support Team _ Yalan Wu
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

2 REPLIES 2
JennyMac73
New Member

 

Hi Everyone,

How would you do this if you have multiple score columns?

 

Here is my data below

GroupScore 1Score 2
Team 114
Team 221
Team 343
Team 432

 

The outputs between Score 1 Column and Score 2  Columns differ.

 

Score Column 1:

1.00  = No understanding , 2.00 = some understanding, 4.00 = Great understanding

 

Score Column 2:

1 = No controls, 2.00 = some controls , 3.00 = Good control, 4.00= Great controls

 

Any thoughts on this would be grealty appreciated, and thank you in advance!

v-yalanwu-msft
Community Support
Community Support

Hi, @msuser48 ;

You could create a measure then create a tooltip page.

Measure = SWITCH(MAX('Table'[Score]),1,"Bad",2,"Average",3,"Good")

then create a tooltip page.

vyalanwumsft_0-1665716242590.png

vyalanwumsft_1-1665716263874.png

 

The final show:

vyalanwumsft_2-1665716279308.png

vyalanwumsft_3-1665716310236.png


Best Regards,
Community Support Team _ Yalan Wu
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.

Top Solution Authors