I have an Alteryx workflow that combines multiple streams of information into 3 outputs for year, month and day.
For an example:
Year output
| 2017 | % of x | % of y | % of z | Total % (x+y+z) |
| 2016 | % of x | % of y | % of z | Total % (x+y+z) |
| 2015 | % of x | % of y | % of z | Total % (x+y+z) |
| ,,,,, | % of x | % of y | % of z | Total % (x+y+z) |
the years continue back to 2005
Month output (same as year except broken down into months i.e. 2017-07, 2017-06, etc.)
Day output (same as year except broken down into days i.e. 2017-07-04, 2017-07-03, etc.)
I would like to have all outputs added into one Excel workbook with multiple tabs. So the year tab would contain the year output, month tab - month output and day tab - day output.
There is a large amount of data that Alteryx needs to go through to create the above 3 outputs. It takes on average 50 minutes of run time to run through the multiple tables and combine into the outputs.
So my questions are;
1) How do i go about creating a workbook with three seperate tabs?
2) Also after the initial workbook is created can the new data be appended? If yes, how would I set that up?
Thanks!