I have a parent folder. Within that parent folder, there are multiple folders and within that folder, I have to extract all the sheets data into one big dataframe
This is what I mean:
Parent Folder - Multiple folders - Multiple Sheets- Different Schema
Extract file names
Within these excel files, there are multiple sheets.
e.g.
- "1. Contractor Master File March.xlsx" would contain the sheets "Contractor A", "Contractor B", etc.
- "1. Contractor Master File February.xlsx" would contain the sheets "Contractor B", "Contractor C", etc.
- "1. Contractor Master File June.xlsx" would contain the sheets "Contractor A", "Contractor C", etc.
I want to extract all the sheets within one table with a column containing full sheet path so that i can then union the respective sheets to create a master information for "Contractor A", "Contractor B", "Contractor C", etc.
I have got the file names. Now, I am aware of this example that can read multiple sheets however, every sheet has a different structure and different columns with a very few common columns and column types and thus, I am getting error when I use the Dynamic input tool.
How can I get what I want?