Hi everybody, i’ve been facing a problem for a few hours…
I wrote a csv file with python i’d like to upload on Airtable. Originally, i exported my base in csv format, modified it on python and then re-uploaded it on Airtable.
If i open my csv with Excel, no problem, every lines and rows are ok. But on Airtable, the lines which contain a list with comas are wrong interpreted. An example :
I try to upload this table (’|’ represents column-separator) :
prenom|nom|instrument|
jean|dupont|violon,piano,guitare|
marie|moulin|guitare
but i get :
prenom|nom|instrument|
jean,dupont,"violon,piano,guitare"| <-- ERROR
marie|moulin|guitare
Thanks if you have any idea…