Hi there,
I have a CSV file in the following format:
Product ID Height Width Metric
1234 123 234 Yes
2345 456 100 Yes
9033 190 200 No
In reality, I have many different CSV files with many columns, all that differ per CSV.
I would like to import this data to Product Category fields. What is the best solution to do this? If I use CSV => EcomProvider, I need to an import job per column per CSV file which is an awful lot of work. I tried creating multiple table mappings to the same source within a job (so I could map Height, Width and Metric all in one go) but it's only picking up the first table mapping. Even if this would work, it would be a lot of work to set up.
Any suggestions? Should I convert my data to some other format (i.e. row based per product/column combination) and if so, has anyone done that before and would like to share the implementation?
Thanks!