Hi,
I have a process I am trying to create in Alteryx and I am hoping someone can help me with the last piece I am stuck on.
Requirements:
1) Take three spreadsheets with multiple tabs (each tab has a different schema, but each file has the same set of tabs) and compare the tab A from file A, file B, file C;
2) output the differences (in a very verbose format)
3) output a merged version of the tab according to a set of rules about which file's changes take priority.
4) Repeat 1-3 for every other tab on files A, B, C
I have already done this with just a single tab and steps 1-3 work fine. I just need to abstract this process to handle every tab, allow selection of the input files at runtime, etc.
Following the tutorial at Input-Multiple-Excel-tabs-at-once I have moved my main comparison workflow into a batch macro, and created a new workflow to pass in a list of file paths with tab names included. The problem is that my comparison workflow expects three inputs, but the macro can only have one; it seems like I need to pass in a list of all file paths for all three files and try to separate them out again inside the macro..?
Is this the only way, and if so how is the best way to do it?
(note that steps 2 and 3 are inflexible in that the business requirement is quite specific regarding the output format and content)