Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.

Add new sheet to the same output file using Output tool

hemant86
11 - Bolide

Hi Team,

 

I'm trying to use 3 Output tool for 3 different input. the result will be produced in the same file but 3 different sheet. screenshot of the workflow attached. Getting error unable to open file. What is hat I'm missing. I cannot use render tool since it does not support more than 100k line items.

 

Appreciate any help

 

hemant86_0-1669732429461.png

hemant86_1-1669732483339.png

hemant86_3-1669732560369.png

 

 

 

 

3 REPLIES 3
DataNath
17 - Castor
17 - Castor

Hey @hemant86 the issue here is that your Block Until Done tools only act upon the individual streams and so all Join outputs will still be running and trying to output at the same time. When you want to set the order of multiple branches like this, you need to use the Parallel Block Until Done tool which is a Crew macro: http://www.chaosreignswithin.com/p/macros.html

 

Here you can see I set the order in which each output stream of the join actually goes through to the point of output, and in the end I can successfully write to all 3 sheets:

 

DataNath_0-1669733195482.png

 

One thing to note here is that PBUD does not work with AMP enabled. If you're using the AMP engine, you can go into your workflow Runtime settings and untick 'Use AMP engine':

 

DataNath_1-1669733281823.png

hemant86
11 - Bolide

Thanks @DataNath . Wasn't aware of the parallel block tool. Will try that out. As of now I managed to do this using a 3 formula tools to add a SheetName column and 1 Union toll to combine all sheets to one file in the output tool.

DataNath
17 - Castor
17 - Castor

No problem @hemant86! Ah yes, using that approach will work fine as long as the 3 schema are the same! :)

Labels
Top Solution Authors