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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
flamcnet
New Member

How to fix mouse over text content (wrap text = off) for "Table" visualization?

Hi, 

 

I am using the table visual:

flamcnet_1-1745440288134.png

 

And text wrap option is Off for header and values:

flamcnet_2-1745440352792.png

 

For some columns I can see the entire text like the one below:

flamcnet_5-1745440963071.png

 

And for some columns in the same table, the mouse over text is being cutted and it is also adding the the "...":

flamcnet_3-1745440681766.png

 

If I expand the column I can see the entire data:

 

flamcnet_4-1745440856256.png

 

Do you know how to fix it?

 

Thanks,

Flavia

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

Hi @flamcnet ,

Thank you for reaching out to Microsoft Fabric Community and for sharing the detailed description and screenshots.

 

Based on what you've described and the visuals you've provided, this behavior appears to be related to how the Power BI Table visual renders content when Wrap text is turned off, especially for fields with certain characteristics like long text, special characters (such as slashes), or potential line breaks.

 

Even though both Source System(varchar(255) and Control Descriptionvarchar(1000) are text fields, their tooltip behavior differs, which suggests this might not solely depend on the field length. Fields with embedded characters like slashes (/) or invisible line breaks can sometimes be interpreted as multiline text internally, even when wrapping is off. This may result in Power BI truncating the tooltip earlier than expected, even though the full content exists and is visible when the column is expanded.

 

A couple of workarounds you could try:
1. Clean or simplify the text in Power Query or a calculated column to remove or replace slashes or line breaks. For example:

Text.Replace([Source System], "/", " ")

or in DAX:

Source System Clean = SUBSTITUTE([Source System], "/", " ")

 

 2. Consider creating a custom tooltip page. This allows you to display the full content on hover using a card or table visual, independent of column width. Just create a new tooltip page, add the field you want, then assign it to the table visual under Format > Tooltip > Type: Report Page. It ensures consistent and complete display for long or complex values.

 

3. Test shortening the text to a consistent max length (e.g., 255 characters) to observe if the tooltip behavior becomes more consistent across both fields.

 

Hope this helps. Please reach out for further assistance.
If this post helps, then please consider to Accept as the solution to help the other members find it more quickly and a kudos would be appreciated.

 

Thank you.

View solution in original post

5 REPLIES 5
v-veshwara-msft
Community Support
Community Support

Hi @flamcnet ,

Thank you for reaching out to Microsoft Fabric Community and for sharing the detailed description and screenshots.

 

Based on what you've described and the visuals you've provided, this behavior appears to be related to how the Power BI Table visual renders content when Wrap text is turned off, especially for fields with certain characteristics like long text, special characters (such as slashes), or potential line breaks.

 

Even though both Source System(varchar(255) and Control Descriptionvarchar(1000) are text fields, their tooltip behavior differs, which suggests this might not solely depend on the field length. Fields with embedded characters like slashes (/) or invisible line breaks can sometimes be interpreted as multiline text internally, even when wrapping is off. This may result in Power BI truncating the tooltip earlier than expected, even though the full content exists and is visible when the column is expanded.

 

A couple of workarounds you could try:
1. Clean or simplify the text in Power Query or a calculated column to remove or replace slashes or line breaks. For example:

Text.Replace([Source System], "/", " ")

or in DAX:

Source System Clean = SUBSTITUTE([Source System], "/", " ")

 

 2. Consider creating a custom tooltip page. This allows you to display the full content on hover using a card or table visual, independent of column width. Just create a new tooltip page, add the field you want, then assign it to the table visual under Format > Tooltip > Type: Report Page. It ensures consistent and complete display for long or complex values.

 

3. Test shortening the text to a consistent max length (e.g., 255 characters) to observe if the tooltip behavior becomes more consistent across both fields.

 

Hope this helps. Please reach out for further assistance.
If this post helps, then please consider to Accept as the solution to help the other members find it more quickly and a kudos would be appreciated.

 

Thank you.

Hi @v-veshwara-msft, thanks A LOT for your detailed analisys of the issue and proposed solution. It really makes more sense now! I will try to review internally if we can fix the data in de data sync process to prevent the special characters, try to add spaces between any eventual concatenation and any other similar cases.

Akash_Varuna
Community Champion
Community Champion

Hi @flamcnet I think you could adjust the column width, as this issue usually happens due to insufficient column width. Make sure the tooltip is enabled so that hovering over the text shows the full content. If it still shows the same issue, you might need to explore custom tooltips, especially if the text is too long to fit within the table column.

Hi @Akash_Varuna , thanks for your answer! The goal is just to make sure the columns have the same behavior: I want to mouse over the cell and see the entire text, withount having to strech the column width.  Since we already have this mouse over capability somehow working nativelly, the last option is to go for a custom tooltip solution. My big question is: why for one column it works and for another column it does not work. In the database "Source System" is varchar(255) and "Control Description" is varchar(1000). Once I figure out this I think I will be able to solve the issue. 

 

Hi @flamcnet It might be because the longer column (varchar(1000)) is getting truncated, preventing the full text from appearing in the tooltip.You will have to explore custom tooltip in your case for your particular requirement

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

May 2025 Monthly Update

Fabric Community Update - May 2025

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