I have a CSV file which I am trying to import using file Helpers Library, issue is I get the spree sheet files from somewhere and save them as CSV to be able to import them but the first line has Wrap-text excel properties which make the cell into multiple line which in excel is only single row/cell but in CSV it counts as more than one, it shows like this in CSV:
"The Student id ", name, sex
instead of
The Student id , name, sex
so when I use ignore first line property of File Helpers, it assumes "The Student id ", is a line and name, sex is another line.
any help apart from format my excel file before importing ?