Forum Discussion

wdrain's avatar
wdrain
Helper 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 ad...
  • 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.