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!!
Solved! Go to Solution.
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}))
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}))
Thank you.