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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.