Alteryx Designer Desktop Discussions

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

How can I let the vale without filed names output in two different excels?

phoebe_90
8 - Asteroid

I have three group data. How can I let the value without filed output in specify range in different excels?

For example, four group data.

Company Name
ffff

 

Report Period
Report Period: Apr 30,2024

 

Currency
Currency: USD 

Output data 

Specify rangesheet1
A1ffff
A2Report Period: Apr 30,2024
A3Currency: USD 

 

Specify rangesheet2
A1ffff
A2Report Period: Apr 30,2024
A3 Currency: USD 
2 REPLIES 2
gawa
16 - Nebula
16 - Nebula

hi @phoebe_90 

Do you need to write the same data to multiple excel sheets? If so, create one column to specify the file location, sheet name, and cell range like this.

ffffC:\Users\hogehoge\desktop\book1.xlsx|||Sheet1$A1:A1
Report Period:xxxxC:\Users\hogehoge\desktop\book1.xlsx|||Sheet1$A2:A2
Currency:USDC:\Users\hogehoge\desktop\book1.xlsx|||Sheet1$A3:A3
ffffC:\Users\hogehoge\desktop\book1.xlsx|||Sheet2$A1:A1
Report Period:xxxxC:\Users\hogehoge\desktop\book1.xlsx|||Sheet2$A2:A2
Currency:USDC:\Users\hogehoge\desktop\book1.xlsx|||Sheet2$A3:A3

 

And, use this option in configuration of Output tool. (Uncheck 'Keep Field in Output')

image.png

 

Maybe it seems you don't need field name in output. Then, check this option.

image.png

Yoshiro_Fujimori
15 - Aurora
15 - Aurora

Hi @phoebe_90 ,

 

As @gawa mentioned, you can specify [Filename] + "|||" + [sheet name] in as "File Path" to feed to Output Data Tool.

 

Sample workflow

1274528_Workflow.png

 

Output

1274528_Output.png

Labels
Top Solution Authors