Forum Discussion
Anonymous
4 years agoNot applicable
Flow map self link
I am relatively to maps on Power BI, and am trying to get the flow map going. My data is based on states (VIC, NSW, NT, etc) in Australia. The problem I have is with logistics data being trans...
v-chenwuz-msft
Community Support
4 years agoHi Anonymous ,
1 I checked some information and it seems that to display bubbles for self-linked streams. If the start and end points are the same, it still doesn't show lines, but if the bubble visualization is turned on, we can show a circle on the map.( https://weiweicui.github.io/PowerBI-Flowmap/ )
2 For the total number. you can create a measure which likes the follwoing, and drag it to the Tooltips.
shipments =
CALCULATE(
SUM( 'Table'[values] ),
FILTER( ALL( 'Table' ), [origin] = MAX( 'Table'[origin] ) )
)
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.