my Source-Table has 7 column groups P1 - P7.
The groups should be transformed into the target table via Crosstable.
I solved that over 7 single tables and append table.
Is there a simpler (more dynamic) solution?
I would do it using iterations. With iterations you can make it work with any number of groups and columns.
See below reworked example. It uses the âIterate tableâ action which sends a table to the iterated subproject. The subproject receives the table using the âInputâ action. When you open the subproject the result of âInputâ is empty, so you need to copy the source data (e.g. by right-clicking the âImport from Excel actionâ and choosing âSend to Clipboardâ) and paste it into the âInputâ manually to create a dataset to work with.
Alternatively, passing the table into the subproject could be done by exporting into a dataset file (âExport to datasetâ), then using the regular âIterateâ action and âImport from Datasetâ in the subproject.
⊠but it would be nice if i could do that in the same project as well.
I heard in the next version should this work? If so, when can i look forward to it?