Forum Discussion
Tooltip
PRAVINV Make sure that the fields used in the tooltip are correctly set to reflect the filtered data. This means that the tooltip should be using the same data context as the visual that is being filtered by the slicer
If you are using Power BI, consider using report page tooltips. Report page tooltips allow you to create a separate report page that serves as a tooltip. This page can have visuals that are filtered based on the context of the data point being hovered over. To do this:
Create a new report page and design the tooltip layout.
Set the page size to Tooltip under Page Information.
Add visuals to this page that will display the filtered data.
Go to the visual where you want to apply the tooltip, and in the Tooltip section of the visual's formatting pane, set the Tooltip type to Report page and select the tooltip page you created.
Ensure that the interactions between the slicer and the visual are set correctly. In Power BI, you can edit interactions by selecting the slicer, then clicking on the "Edit interactions" button in the Format tab. Make sure that the visual is being filtered by the slicer.
Use dynamic titles and measures in your tooltip to reflect the filtered data. This can be done by creating measures that dynamically change based on the slicer selection and using these measures in your tooltip.
Here is an example of how you might create a dynamic measure in Power BI:
DAX
SelectedSites =
CONCATENATEX(
VALUES('Table'[SiteName]),
'Table'[SiteName],
", "
)