Hi Community,
I have a daily job running which reads input data (contract ids) from a Excel file with 1 column:
ROW CONTRACT_ID
1 12345
2 67890
I use the TableRow to Variable Loop Start for this job. It work's fine if the cells only contains 1 ID or the Input table is empty
(--> Empty Table Switch). It print's out 1 file for each input contract ID.
On some days the input looks like this:
ROW CONTRACT_ID
1 12345
2 65432 98765
For this case I want to implement a Rule/ Case which defines:
a) if the list only contains 1 ID in each cell --> start loop
b) if the list contains cells with 1 ID or n space separated IDs (= 1 customer, n contracts) --> string manipulation(replace space to ",") --> start loop
Can anyone help with the If Nodes?