Export & import CSV file getting error

Hi Everyone. I am trying to export sheets parameters to excel from one file and same CSV file i am importing data not came fully… Please help me solve… Thanks in advance…

@pankaj It’s because CSV is a 2 dimensional format. So it can only work with data up to @L3. Since your data structure consists of data up to @L4. It writes data from index 0 @L3 and then overwrites it with data from index 1 @L3. Hence you have missing values.

You need to flatten your list @L2 to make it a @L3 list and it should work as expected.

2 Likes

Hi Amol Shah,
I need to export my list up to @L4. What are the formats supporting that level,? should I export to an Excel file? Is it possible to export @L4, using a delimiter and data.exportCSV+ node?