Forum Discussion

wdrain's avatar
wdrain
Icon for Helper I rankHelper I
3 years ago
Solved

How do you add additional columns to a Table Visual ToolTip

How do add additional columns to the default ToolTips for a table visual? And/or How would you create a custom tooltip for a Table Visual formated that same way as the default ToolTip but with the additional columns?

see image below for details...

 




  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi wdrain 

    You can refer to the following example.

    Creata a measure to union the fields of the table and the related value

    Measure = "Computer Name"&":"&" "&MAX('Table'[Computer Name])&UNICHAR(10)&"Model"&":"&" "&MAX([Model])&UNICHAR(10)&"Operating System"&":"&" "&MAX([Operating System])

    The UNICHAR(10) is Line breaks.

    Then put the measure in a card visual and hide the label of the measure

    Output

    Best Regards!

    Yolo Zhu

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

     

     

4 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi wdrain 

    You can create a table or multi-row card in a new page then use the page as a custom tooltip.

    You can refer to the following link to know more about how to creata a custom tooltip

    Create report tooltip pages in Power BI - Power BI | Microsoft Learn

    Best Regards!

    Yolo Zhu

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

  • Hi Zolo

    My question specifically is how do you format the ToolTip to match the default tooltip, creating a tooltip I know how to do, I need help on formatting it to match the default tooltip or help on how to add additional columns to the default tooltip.

    The link provided does not provide any guidance on my specific question.

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi wdrain 

      You can refer to the following example.

      Creata a measure to union the fields of the table and the related value

      Measure = "Computer Name"&":"&" "&MAX('Table'[Computer Name])&UNICHAR(10)&"Model"&":"&" "&MAX([Model])&UNICHAR(10)&"Operating System"&":"&" "&MAX([Operating System])

      The UNICHAR(10) is Line breaks.

      Then put the measure in a card visual and hide the label of the measure

      Output

      Best Regards!

      Yolo Zhu

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

       

       

      • Marpas's avatar
        Marpas
        Icon for Helper I rankHelper I

        Hi,

        have found solution to your problem?

        (not by making custom tooltip, but customizing default one)