Hi all,
I am a total newbie in Alteryx Designer and need your help. I would like to create a list with all sheets of excel files from a directory. I am not interested in the content of the sheets (yet). I just want a list in the form:
| Record | Sheet Names | Path |
| 1 | Sheet 1 | ...\file1.xlsx|||'Sheet 1$' |
| 2 | Sheet 2 | ...\file1.xlsx|||'Sheet 2$' |
| 3 | Sheet 3 | ...\file1.xlsx|||'Sheet 3$' |
| 4 | Sheet 1 | ...\file2.xlsx|||'Sheet 1$' |
| 5 | Sheet 2 | ...\file2.xlsx|||'Sheet 2$' |
| 6 | Sheet 1 | ...\file3.xlsx|||'Sheet 1$' |
| 7 | Sheet 1 | ...\file4.xlsx|||'Sheet 1$' |
| ... | ... | ... |
I tried a batch macro for this: Read in Multiple Excel Files, with Multiple Tabs that have Different Schemas (alteryx.com) but omitted the second part (macro), since I don't want to open the sheets.
Unfortunately, this does not work as desired. Does anyone have an idea how to solve this?