Hi, I have been working on multiple workflows which each output two columns of data, the first column is always the month in the year (eg. 2018-01, 2018-02 etc.) and the second is the unique data tied to the workflow (specific indicator). The data in the second columns for each workflow is completely unrelated to each other so need to go down the route of joining based on the first column which I can get to work on a small scale (tested with 5 inputs and 'Join Multiple' tool) but will eventually be looking at 60+ indicators with unique data that will need to be joined and do not fancy the idea of having to add in 60+ 'Input' tools to a workflow.
Example of each individual 'indicator' output (from pre-run workflows);
| Month | Indicator Data |
| 2018-01 | 2 |
| 2018-02 | 4 |
| 2018-03 | 3 |
| 2018-04 | 2 |
| 2018-05 | 3 |
| 2018-06 | 4 |
Example of final output;
| Month | Indicator 1 Data | Indicator 2 Data | Indicator 3 Data | Indicator 4 Data | Etc... |
| 2018-01 | 2 | 0.13 | 0.86 | 101 | ... |
| 2018-02 | 4 | 0.22 | 0.89 | 112 | ... |
| 2018-03 | 3 | 0.20 | 0.90 | 109 | ... |
| 2018-04 | 2 | 0.17 | 0.81 | 113 | ... |
| 2018-05 | 3 | 0.11 | 0.81 | 102 | ... |
| 2018-06 | 4 | 0.19 | 0.84 | 107 | ... |
Grateful for any assistance with this.
Thanks,
Léon