I am exporting my gradebook as CSV and then read it in into excel. As the CSV is actually using ";" as a delimiter and not "," excel creates one column with the last name and then one column with all other data. This is very annoying as I have to then separate the second column into all other columns. More so, the header row does not have a comma, thus this row needs to be column divided separately. All in all, many manual steps that can be easily avoided.
The solution is very simple, if the CSV file has the following as first line:
sep=;
Excel will then interpret the ";" as delimiter and the import will be simple with no manual steps.
Can you please do this in the next update?
Thanks