Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Abdelrhman_2020
Frequent 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 3
v-alq-msft
Community Support
Community 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"

 

 

e1.png

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.

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 

amitchandak
Super User
Super User

If they are a few, you can read and add them one by one

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.