Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI,
Im trying to import an Excel file with Longitude and Latitude but when I run the import script the '.' are converted into ',' (comma's). How can I keep the format of the these fields?
This is my import script :
LOAD
lat,
lng,
Item
FROM
C:\uk_test.xlsx
(ooxml, embedded labels, table is uk_test);
Many thanks for any help!
Fiorano
HI,
Try like this
LOAD
Text(lat) AS lat,
Text(lng) AS lng,
Item
FROM
C:\uk_test.xlsx
(ooxml, embedded labels, table is uk_test);
Regards,
Jagan.
hi,
change environment varibale DecimalSep to '.'.
SET DecimalSep=',';
replace above statement with with below one
SET DecimalSep='.';
Niranjan M.
HI,
Try like this
LOAD
Text(lat) AS lat,
Text(lng) AS lng,
Item
FROM
C:\uk_test.xlsx
(ooxml, embedded labels, table is uk_test);
Regards,
Jagan.
Hi I tried this and the latitude figures are now showing as single figures : '5'
Fiorano