I have a workflow group with separate workflows.
This separate workflows have data which should be combined at the end.
Is ist possible, to hand over data from one workflow to another workflow or to combine all workflows to one “main” workflow?
At the moment I use Excel-files as interface solution, but actually I don’t want to have many Excel-files as interim solution.
there is no such thing as “handing over the data” between different workflows. There is Call Workflow (Table Based) node where you can send data to called workflow but won’t work in your case cause you have multiple “handing over” to do which would require chaining all workflows and thus sequential execution which seems a bit clunky.
But you have couple of other options you can try:
write data from each workflow into same folder within this workflow group and create another, “main”, workflow which reads all data from this folder and performs needed concatenation and/or manipulation… Use Table Writer and Table Reader nodes as they write/read KNIME data format fast(er)
combine all workflows into one workflow where you will collapse each workflow into one Metanode and then combine it’s outputs