Forum Discussion
Incorrect map location
This usually works for me:
Create a new calculated column that concatenates the street address, city, state/province, postal code, and country. It seems to geocode faster this way as well:
ShipToLocation = 'Details'[Ship To Address] & " " & 'Details'[Ship To City] & " " & 'Details'[Ship To Region] & " " & 'Details '[Ship To Postal Code] & " " & 'Details'[Ship To Country]
Instead of placing multiple location-related fields in the location well for the Map visual, just put this one new field in there. This full location can be used with the ArcGis map visual.
- CharlesK8 years agoFrequent Visitor
Jesus!! this worked like gold!!
i'm in Kenya so Maps couldnt find aaaany of my towns....
so i read this and did it kinda half assed...
i put "Kenya-" infront of every town name.
it found each and every single town!!!!!
Kudos sir. - smgt906 years agoFrequent Visitor
Thanks, this tip helped me but I put the country then the state and then the city all separated by a space. I tried sorting it as city "space" state and it didn't work.