Forum Discussion
Analitika
6 years agoPost Prodigy
Custom tooltip formula to multiple visuals
How to write formula for custom tooltip, which will depend on each visuals hover
i need get tooltips values from different tables and columns, depending on which visual is hovered
something like that
ToolTip =
SWITCH(
TRUE(),
isfiltered('DBA2'[OB2]),values('DBA2'[OB2]), //1 visual
isfiltered('DBAS'[OBJ]),values('DBAS'[OBJ]), //2 visual
isfiltered('DBA3'[OB3]),values('DBA3'[OB3]), //3 visual
[OB4] // others
)
but that formula not work properly
7 Replies
- az38Community Champion
Perhaps, you need the technique like this https://docs.microsoft.com/en-us/power-bi/desktop-tooltips
- AnalitikaPost Prodigy
Yes, i using that, but it require to create new tooltip to each visual, so on report page i have 12 visuals and must create 12 pages for tooltips, which makes it difficult to navigate through the pages