Forum Discussion

natasha519's avatar
natasha519
Helper II
4 years ago
Solved

Removing Tooltip from Blank Row

I am using the matrix visualization with with two types of rows (tier and then project number under each tier). I have a tooltip showing when I hover over the blank row for the tier. It looks like it is summarizing everything for that tier but I would like the tooltip to either be blank for the blank row OR say something along the lines of 'No information to display' in the tooltip

 

Is it possible to remove tooltip from certain rows in a matrix?

  • Hi natasha519 ,

    According to your description, try to create a measure and put it into the Tooltips.

    Here's my sample.

    Create a measure.

    Tooltip = IF(MAX('Table'[Column1])=BLANK(),BLANK(),MAX('Table'[Column2]))
    

    Get the result.

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

1 Reply

  • Hi natasha519 ,

    According to your description, try to create a measure and put it into the Tooltips.

    Here's my sample.

    Create a measure.

    Tooltip = IF(MAX('Table'[Column1])=BLANK(),BLANK(),MAX('Table'[Column2]))
    

    Get the result.

    Best Regards,
    Community Support Team _ kalyj

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.