Reputation: 821
I am trying to upload a csv file to my parse database. I created all versions of CSV files (mac, windows, comma delimited vs.) but whenever I try to import, all the columns are merged as one column in parse. Below are the views of my csv file and the view in parse. How can I distribute them separately to separate columns. Any ideas?
Upvotes: 0
Views: 376
Reputation: 4331
The reason why you have this problem is because you have ';' as your separator, not a ',' how it is supposed to be in CSV.
This can unfortunately only be changed through the operating system settings and not on excel export (on both mac and windows machines).
The most feasible way for you would be to export to a 'tab-separated' file and then just Find-Replace the 'tabs' with ','
(You can find and replace 'tabs' in most editors by just copy pasting an existing tab into the search field)
Upvotes: 1