CSV Import for unfiltered data

0
I have an entity 'product'  and I have the sample csv file in below format   col1,col2,col3 data1,data2,data3 col4,col5 data4,data5   col1,col2,col3,col4,col5 are the attributes.   How can I import this type of data into the product entity I have already downloaded the required modules and created the necessary microflows
asked
2 answers
0

Hi Akshay,

 

Watch this video 

https://youtu.be/gHk3qjWIpmk?si=sOVkjWKLbBPt7rd0

answered
0

This looks like you have multiple CSV files merged into one file.

 

In this case, you'd need know the structure of the data, then split your data into individual CSV files / strings. You'd have to use Mendix string manipulation or write your own Java action to do this. Once you have these, you can use the CSV module to import each of the new CSV files.

 

I hope this has helped.

answered