I am having trouble creating a workflow to sum together multiple fields recording the sum on an output file and repeating this process for multiple excel files. The excel files have the same schema and tab names. I have no issue creating a workflow to identify the fields and add them together, I just cannot get alteryx to do the same process on all files in my directory. I have provided more detail below
To start we have 3 excel files and we want to add a number of fields on the tab named SAL(this tab exists on all 3 sheets):
File 1$SAL
File 2$SAL
File 3$SAL
The output file should look like:
FIle 1$SAL - summed amount
FIle 2$SAL - summed amount
FIle 3$SAL - summed amount
I cannot be more specific because I am working with proprietary info, but I have attached a screenshot that I will explain below...
I started with an input data tool to pull in all files starting with "WB."
In the top row - I used the select tool to select 2 columns(the label name and values columns).
then I used a filter tool to filter out values I intend to sum. Lets call it "Shares"
then I used a summarize tool to add all values with the label name shares
In the bottom row - I used a select tool to select the column containing the file name
then I put a filter to filter any extra info so I am left with only the name
Then I used a join tool to combine my file name with the values I summed.
Then I used an output tool to create a new excel file displaying the file name and summed values
I'd like to repeat this entire process so my output file contains the summed values for every file in my directory.