Forum Discussion
cwayne758
10 years agoHelper IV
Incorrect map location
Hello, The Map visual seems to be plotting some of my locations incorrectly (see attached). Example of data; Florida, United States, 32217
Anonymous
9 years agoNot applicable
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.
smgt90
6 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.