Concantenate not working for geopoint

1301
2
Jump to solution
08-21-2020 07:12 AM
JoeLivoti
New Contributor III

I have just recently run into a problem. I am using pulldata for the lat/lon of centroids of townships. I try to use the concatenate in the calculation and i keep getting this error:

I've attached both the xls form and the csv for the pulldata.

Any help would be greatly appreciated!!

1 Solution

Accepted Solutions
JamesTedrick
Esri Esteemed Contributor

Hi Joe,

As indicated in the 'Calculate Location from CSV' sample, the concat statement should requires the lat and Lon to be explicitly declared as a numeric type:

concat(number(${lat}),' ', number(${lon}))

View solution in original post

2 Replies
JamesTedrick
Esri Esteemed Contributor

Hi Joe,

As indicated in the 'Calculate Location from CSV' sample, the concat statement should requires the lat and Lon to be explicitly declared as a numeric type:

concat(number(${lat}),' ', number(${lon}))

JoeLivoti
New Contributor III

Thank you.