Complete the code to load a custom geocoding CSV file in Tableau.
LOAD DATA FROM '[1]' AS CustomGeo
Tableau requires the custom geocoding file to be loaded from the correct CSV file, usually named custom_geocoding.csv.
Complete the calculation to create a custom latitude field using the data column.
FLOAT([[1]])Latitude values are used to create the custom latitude field, so the column Latitude is correct.
Fix the error in the custom geocoding join calculation to match the location field.
[Location] = '[1]'
The join condition should compare the [Location] field to the string 'City' without brackets, so City is correct.
Fill both blanks to create a calculated field that converts longitude and latitude to numbers.
FLOAT([[1]]) + FLOAT([[2]])
Longitude and Latitude fields must be converted to float numbers for calculations.
Fill all three blanks to create a custom geocoding join condition matching city, state, and country.
[CustomGeo].[City] = [Data].[[1]] AND [CustomGeo].[State] = [Data].[[2]] AND [CustomGeo].[[3]] = [Data].[Country]
The join condition must match City, State, and Country fields correctly between custom geocoding and data tables.