Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi all,
I want to leverage PowerBI's highlight feature to create a report so that clicking a point on a map will filter visuals to the right of the map. This is obviously a default feature ("highlight"), however, I'm not sure what to display when nothing is selected. Certain visuals make sense as an aggregate but others (like text fields) do not. So for those, it would be best to either show nothing or show something like "Select a location." Any ideas?
Solved! Go to Solution.
You could try a measure like this:
Example Measure =
IF (
ISCROSSFILTERED ( DimTable[Location] ),
<Your measure>,
"Select a location"
)
When nothing is selected on the map (i.e. no location has been clicked), the measure will return the text "Select a location". Otherwise, it will return the measure you want to display.
Proud to be a Super User!
You could try a measure like this:
Example Measure =
IF (
ISCROSSFILTERED ( DimTable[Location] ),
<Your measure>,
"Select a location"
)
When nothing is selected on the map (i.e. no location has been clicked), the measure will return the text "Select a location". Otherwise, it will return the measure you want to display.
Proud to be a Super User!
This is amazing, thank you!
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
93 | |
89 | |
83 | |
75 | |
49 |
User | Count |
---|---|
142 | |
141 | |
110 | |
69 | |
55 |