Forum Discussion

dwel0120's avatar
dwel0120
Icon for Helper III rankHelper III
5 years ago
Solved

Dynamic Distance Map Help

I'm following the https://dataveld.com/2019/03/20/display-points-within-a-distance-radius-on-a-power-bi-map/ to create points within a distance radius on a simple pbi map. I have everything working e...
  • v-kelly-msft's avatar
    5 years ago

    Hi  dwel0120 ,

     

    Try:

    Map Point Size =
    IF (
        ISFILTERED ( 'Selector'[City] ),
        IF (
            [Distance (mi)] <= [Maximum Distance (mi) Value],
            IF ( [Distance (mi)] = 0, 1, 0.25 ),
            0
        ),
        1
    )
    

     

     

    Best Regards,
    Kelly

    Did I answer your question? Mark my reply as a solution!