Hey all,
I'm attempting to read multiple CSV files and combine them all into a single file.
I'm doing this with a for each loop and merging %CurrentItem% and a list labeled for each file (which should create a datatable).
When I output the %CurrentItem% straight into a .csv file, it works just fine, but when I write the list to a .csv file, it only outputs the words "column one".
After looking at the list variables, I noticed that the merge was creating lists that are effectively layered.
The top layer is "list of datatables"
And then the second layer is the actual datatable. *Image of what I mean*
So how do I either prevent the multiple layers, or how can I perform this task more simply to avoid the datatable merge issue?
