Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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 problem
But as soon as I switch that order then the seniority just vanishes
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.
Is that just a bug? what is its origin? Any known workaround?
Solved! Go to Solution.
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.
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.![]()
Profile_of_Candidate = FIRSTNONBLANK ( 'YourTableName'[FROFILE OF CANDIDATE], 1 )
Regards
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.
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.![]()
Profile_of_Candidate = FIRSTNONBLANK ( 'YourTableName'[FROFILE OF CANDIDATE], 1 )
Regards
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 40 | |
| 37 | |
| 32 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 66 | |
| 58 | |
| 31 | |
| 25 | |
| 24 |