I have a workflow that takes several different data sources, cleans/combines the data, and then writes the data to a single output file (xlsx) with various tabs based on the data.
For example:
All sources (1, 2, 3, etc.) -> cleans/combines data -> Output to a single xlsx file with 30+ tabs (file.xlsx|||tab1, file.xlsx|||tab2, etc).
Problem ->
I continue to receive the error, "Unable to make final write to [file.xlsx], error in use by another process." The workflow is creating the single xlsx, writing to that file, and then erroring out because Alteryx already has the same file open.
Possible solutions ->
I've tried to use the "Block Until Done" and "Throttle" tools but Alteryx Designer doesn't actually wait to open the file. Is there a way to order the outputs for the various tabs? Is there a way to chain the outputs or wait until the file is closed to start writing to the file?
I know another solution would be to combine all of the outputs into a single output, but I'm guessing that there is another solution that I haven't thought of.