Forum Discussion
Kulashekharan
6 years agoNew Contributor II
Same column name in a CSV will over write the previous key with same name, hence will retain the last column’s key and value only. CSV doesnt expect an Array.
If the number of columns are fix, you can do the following
- Use Skip Lines = 1 (skips Header row)
- Uncheck Contains Header
- Added the Column Names this time with some difference in the column names:
Example: ID, Name, Company CD, CompDescription, Job, JobDescription, Department, DeptDescription, OrgUnit, OUDescriptin
the Names within an object should be unique so you can clearly identify them. If they can repeat then they need to be an Array or array of objects
- hina_walia6 years agoNew Contributor
Thanks . It worked