Forum Discussion
Anonymous
3 years agoNot applicable
Multiple tooltip pages not working in map visualization
Hello everyone, I am a beginner in Power BI and I am having trouble with the following issue. I have 3 different sensors located in 3 different locations. I have created 3 different tooltip pages...
- 3 years ago
This is a tricky one since you have to setup the charts individually.
Basically you create two measures for the formatting something similar to:
E-Readings X Tooltip = IF(SELECTEDVALUE(SENSOR[SENSOR]) = "E", READINGS[E-READING X]) E Readings x Tolltip Text = IF( SELECTEDVALUE(SENSOR[SENSOR]) = "E", "Black", "#FFFFFF00")The first one is for the values and the other one is for condittional formatting the titles
Then you setup a measure for each chart/measure you want to show in this case I created 5 measures one for each chart.
You need to turn off the background, result below and in attach file.
Be aware that for make a better formatting of the charts you need to apply the filter of the sensor, after ending the formatting clear the filter of the sensor.
Check this blog post
Anonymous
3 years agoNot applicable
MFelix thank you very much! That was exaclty what I needed!!