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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
fiveone
Helper II
Helper II

union formula column section error

On the tooltip of a bubble chart I want to show both the name of the person and his seniority (=profile of candidate).

 

 I can show  seniority then name without problem2017-02-08 11_14_57-Staffing Dashboard - Power BI Desktop.png2017-02-08 11_15_11-Staffing Dashboard - Power BI Desktop.png

But as soon as I switch that order then the seniority just vanishes

 2017-02-08 11_15_30-Staffing Dashboard - Power BI Desktop.png2017-02-08 11_15_41-Staffing Dashboard - Power BI Desktop.png

The only way to bring it back is to put it in the tooltip section but then it shows at the end and it looks kind of stupid with the "First..." prefix.

2017-02-08 11_16_04-Staffing Dashboard - Power BI Desktop.png

 

Is that just a bug? what is its origin? Any known workaround?

1 ACCEPTED SOLUTION
v-ljerr-msft
Employee
Employee

Hi @fiveone,

The only way to bring it back is to put it in the tooltip section but then it shows at the end and it looks kind of stupid with the "First..." prefix.

This is the default behavior currently. As only scalar value(like a measure) can be set to the "Tooltips" field, when a table column is set to the field, an aggregation will be applied to that column. In your scenario, the "First" aggregation is applied to your "FROFILE OF CANDIDATE" column by default, so there is a prefix of "First" show on the tooptips.

 

first1.PNG

 

In this scenario, I would suggest you to create a new measure with a name you want, to return the value of "FROFILE OF CANDIDATE", then set the measure to the Tooltips field. The formula below is for your reference.Smiley Happy

Profile_of_Candidate = FIRSTNONBLANK ( 'YourTableName'[FROFILE OF CANDIDATE], 1 )

 

Regards

View solution in original post

1 REPLY 1
v-ljerr-msft
Employee
Employee

Hi @fiveone,

The only way to bring it back is to put it in the tooltip section but then it shows at the end and it looks kind of stupid with the "First..." prefix.

This is the default behavior currently. As only scalar value(like a measure) can be set to the "Tooltips" field, when a table column is set to the field, an aggregation will be applied to that column. In your scenario, the "First" aggregation is applied to your "FROFILE OF CANDIDATE" column by default, so there is a prefix of "First" show on the tooptips.

 

first1.PNG

 

In this scenario, I would suggest you to create a new measure with a name you want, to return the value of "FROFILE OF CANDIDATE", then set the measure to the Tooltips field. The formula below is for your reference.Smiley Happy

Profile_of_Candidate = FIRSTNONBLANK ( 'YourTableName'[FROFILE OF CANDIDATE], 1 )

 

Regards

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.