Import/Export CSV

0
I have a CSV file with four columns CustomerID, Name, State, Age which I have to import. I am using CSV module from the marketplace to achieve this.    So the problem I am facing is while I am not able to import the CSV file as it is. I am able to import that file only when I am deleting the column names from the file. I am not able to figure out why this is happening.   Please help
asked
1 answers
1

I'm guessing all the column names are Strings, but you are expecting some of the columns (such as Age) to be numeric in the import.

 

If this is the case, adjust the skipLines parameter in the ImportCSV Java Action so it skips the header.

 

I hope this helps.

answered