Hi,
I'm using two files via sftp. They both align on the same column names, but File 2 has an extra field which sometimes is empty field.
Because of the extra field my dynamic input is skipping the second file (File 1). In this case File 2 is received prior to File 1 but this could change.
Is there a way to union the files prior to the dynamic input?
I've included a pic of the tools I'm using in the workflow.
File 1:
File2:
| ACCOUNT | SITE | TID | MBUSNAME |
| 56 | u | 8 | |
| 78 | u | 9 | |
Expected Result:
| ACCOUNT | SITE | TID | MBUSNAME |
| 23 | y | 2 | |
| 34 | y | 5 | |
| 56 | u | 8 | |
| 78 | u | 9 | |