Forum Discussion
Abdelrhman_2020
6 years agoFrequent Visitor
Get Excels Files From a Folder Without Combining it
Hello,
I want to Get Excel Files from a Folder without Combining it to one table
I want to get each Sheet from the Workbooks as a Tables Seperatly
is there any
3 Replies
- v-alq-msftCommunity Support
Hi, Abdelrhman_2020
Based on your description, I'd like to suggest your create a function in Power Query as below.
(Path as text,ExcelName as text,SheetName as text)=> let Source = Folder.Files(Path), PathStep = Source{[#"Folder Path"=Path,Name=ExcelName]}[Content], #"Imported Excel" = Excel.Workbook(PathStep), SheetStep = #"Imported Excel"{[Item=SheetName,Kind="Sheet"]}[Data], #"Promoted Headers" = Table.PromoteHeaders(SheetStep, [PromoteAllScalars=true]) in #"Promoted Headers"You may input a set of parameters and get a a corresponding query. After executing multiple times, you can get tables what you want.
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Abdelrhman_2020Frequent Visitor
Thanks for your Reply
What should I fill in the Excel Name and Sheet Name
as i have a Several Excel Workbooks in my Folder and I have a lot of Sheets in it
- amitchandakSuper User
If they are a few, you can read and add them one by one