Forum Discussion

Bmejia's avatar
Bmejia
Super User
1 year ago
Solved

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.  Meanin...
  • Anonymous's avatar
    Anonymous
    1 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