Microsoft Excel in Europe has issues reading Webflow-exported CSV files, it inserts all columns into a single column per row, making it unreadable. This is because our unit system uses commas and our CSV files are actually separated by semicolons.
To fix it and make it more worldwide-friendly, we need the following at the top of the file:
sep=,
Info about this can be found here:
https://stackoverflow.com/questions/17953679/how-to-correctly-display-csv-files-within-excel-2013
EDIT: The goal is to have CSV work globally without any issue using Excel's default settings, currently we need to give our clients solutions that aren't beginner-friendly.
Open a new Excel sheet.
Click the Data tab, then From Text.
Select the CSV file that has the data clustered into one column.
Select Delimited, then make sure the File Origin is Unicode UTF-8.
Select Comma (this is Affinity's default list separator). ...
Finally, click Finish.
Remember to Save your document!