Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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,
Solved! Go to Solution.
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
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.