3 answers
Hi Jonathan,This are consideration while importing data from CSV file in salesforce.https://help.salesforce.com/articleView?id=000313396&type=1&mode=1https://help.salesforce.com/articleView?id=000331030&type=1&mode=1Most probably your excel setting changes the delimiter to semi-colon (;) instead of comma (,). To resolve this issue:1. Go to your file and right click on it.2. Select Open with and select notepad3. Once the file open in notepad, click on the Edit Tab.4. Select replace5. On the "Find what" field enter the value (;) semi-colon6. On the "Replace with" field enter the value (,) comma7. Click on the Replace all button.8. Save the file and add the .CSV on the end of the file name.Once done with the last step, don't open again the save file on excel. This will ensure that the delimiter of the file is save as comma delimited. The file should be good for import. Please let me know if this answer your query or you can mark it as solved.Thanks!