Hello everyone,
I’m trying to import a CSV file into GlideApps, but I need to change the default separator from a comma (“,”) to a semicolon (“;”).
Currently, my CSV file is formatted like this:
1,2,3,4,5
But I need it to be formatted like this:
1;2;3;4;5
Is there a specific way to set the separator properly so that GlideApps recognizes the semicolon instead of a comma?
Any help would be greatly appreciated!
Thanks! 
Assuming that you are using the Data Editor Import function, then no, I don’t believe you can specify the separator.
I’m curious - why would you need to do this?
1 Like
Yes usually it’s the contrary that is needed. French csv uses semi column ; to separate data because decimals are with comma:-) where us decimals are with point . Hence the comma separation in the csv
1 Like
If the CSV is properly constructed - with each field double-quoted - then that should not matter.
1 Like