Forum Discussion
Static bubbles on a map
- 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
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