Forum Discussion
Power Bi Maps Australia
- 9 years ago
Try creating a derived column to combine the suburb, city, and country in either Power Query or DAX. I'm assuming you've already petitioned all local governments to change rename everything to be globally unique, and that's been denied :-)
Using DAX: Suburb_Derived = Sheet2[Suburb] & ", " & Sheet2[City] & ", " & Sheet2[Country]
- 9 years ago
Hi grkanth81,
Because there might existing same suburb name in different countries. That is why under suburb level, the map visual shows details of other countries also.
In order to uniquely identify suburb across the world, I would suggest you use PostCode. Please see below:
Best regards,
Yuliana Gu
Hi grkanth81,
Because there might existing same suburb name in different countries. That is why under suburb level, the map visual shows details of other countries also.
In order to uniquely identify suburb across the world, I would suggest you use PostCode. Please see below:
Best regards,
Yuliana Gu
- grkanth819 years ago
Helper II
Thanks v-yulgu-msft. That worked using post code option also.