Forum Discussion
dwel0120
Helper III
5 years agoDynamic 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...
- 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,
KellyDid I answer your question? Mark my reply as a solution!
v-kelly-msft
Community Support
5 years agoHi 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!
- dwel01205 years ago
Helper III
- v-kelly-msft5 years ago
Community Support
Hi dwel0120 ,
Can you share me your .pbix file with some dummy data for test?
Remember to remove the confidential information.
Best Regards,
KellyDid I answer your question? Mark my reply as a solution!
- dwel01205 years ago
Helper III
Your original code change worked!! I had switched the data source in one of the values I was tyring and forgot to switch back. Thank you so much!! I have been trying to figure this out for days. I really appreciate it!