Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
We’re experiencing technical issues with our vendor that are affecting license activations for Designer Desktop. We don’t yet have an estimated resolution time. We apologize for the inconvenience and will share updates as we have them.
Start Free Trial

Alteryx Designer Desktop Discussions

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

From input excel, for each row how to produce separate excel sheet.

If a excel-sheet contains input data

EMP_ID    Age    Mark1      Mark2   Mark3      Total

101              19      50             60         70          180

201              18      80             40         50          170

301              19      70             60         60          190

then trying to get separate result as below

File-1: Result_101.xlsx

EMP_ID    Age    Mark1      Mark2   Mark3      Total

101              19      50             60         70          180

File-2: Result_201.xlsx

EMP_ID    Age    Mark1      Mark2   Mark3      Total

201              18      80             40         50          170

File-3: Result_101.xlsx

EMP_ID    Age    Mark1      Mark2   Mark3      Total

301              19      70             60         60          190

 

Please guide as am new in development.

3 REPLIES 3
sathyar
8 - Asteroid

In the output tool just enable the keep in field output box and mention the employee id field in field containing file name .Then it will generate the each excel sheet for each employee separately.

CoG
14 - Magnetar

@sathyar- is correct about generating separate sheets for each employee.

 

If, however, you want to create separate excel files for each employee ID, then you will want to dynamically create new file paths to store the data, I am including a helpful knowledge article that will help explain the process for doing this.

https://knowledge.alteryx.com/index/s/article/Output-to-separate-Excel-files-1583459117188

 

Just make sure, you are setting the appropriate file types, per your requirement ".xlsx" instead of ".xls" which is what is in the article I linked.

 

I also attached a simple sample workflow that does this (just add in a proper file path)

Thank u, it works

Labels
Top Solution Authors