Forum Discussion
Static bubbles on a map
I have a dateset with several locations., all is in one table 5 of those locations are the main warehouse locations (Red Bubble). Can I make my 5 locations static when the report is filter. Meaning that if i were to select any of the other 5 location that is not the main locations I can still see them.
Current view:
View if I filter on category (cat) red bubbles go away
I want to be able to see the bubbles with main locations, even when the data is filter on any category or filter
Thanks,
- Anonymous1 year ago
Hi Bmejia ,
You might consider creating a table with no join relationships that contains only the columns that need to be filtered:
Table = DISTINCT('Geo'[Region])Then create a measure and place it in the filter to set 1 or 0 to display the corresponding data:
Flag= var _select=SELECTEDVALUE('Table'[Region]) RETURN IF( MAX('Geo'[Region]) = _select || MAX('Geo'[State])="Mo" || MAX('Geo'[State])="VA" ,1,0)If the results above do not meet your desired outcome, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
1 Reply
- AnonymousNot applicable
Hi Bmejia ,
You might consider creating a table with no join relationships that contains only the columns that need to be filtered:
Table = DISTINCT('Geo'[Region])Then create a measure and place it in the filter to set 1 or 0 to display the corresponding data:
Flag= var _select=SELECTEDVALUE('Table'[Region]) RETURN IF( MAX('Geo'[Region]) = _select || MAX('Geo'[State])="Mo" || MAX('Geo'[State])="VA" ,1,0)If the results above do not meet your desired outcome, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly