Forum Discussion
How do you add additional columns to a Table Visual ToolTip
- Anonymous3 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.
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.