Aggregating arrays / lists into a table / csv #34
Unanswered
natecdavis
asked this question in
DataFlows & Modules
Replies: 1 comment 1 reply
-
|
Use an Accumulator to terminate your loop, then pass the output of the Accumulator into the 'Rows' input of a Table Creator module. From there, you can use the CSV Writer to produce an output file. If the operations performed in your loop are available in SQL, you could consider using the Table Creator on your input data, and then transforming it via a Table Query rather than a loop, but this may or may not be possible depending on your specific use case. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What's the best way, when running a loop in a DataFlow ,to aggregate many arrays / lists into a single table? Each iteration of the loop produces one array / list, and ultimately I'd like to save the table aggregating all of these to a CSV.
Beta Was this translation helpful? Give feedback.
All reactions