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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
komald
Helper I
Helper I

How to get all sheets as a table in power bi

I have a folder which consist 3 excel file and each file has 3 sheet I want to fetch all these sheets as a Table i.e 9 tables in power bi( I dont want to combine files as it consist independant data) . How to do that?

Data source will be folder path

1 ACCEPTED SOLUTION
AntrikshSharma
Super User
Super User

@komald Use this:

let
    Source = Folder.Contents ( "C:\Users\SharmaAnt\Downloads\Test" )[[Content]],
    AddedCustom = 
        Table.AddColumn (
            Source,
            "Custom",
            each Table.SelectRows ( Excel.Workbook ( [Content] ), each [Kind] = "Table" )[Data]
        ),
    ExpandedCustom = Table.ExpandListColumn ( AddedCustom, "Custom" )
in
    ExpandedCustom

View solution in original post

1 REPLY 1
AntrikshSharma
Super User
Super User

@komald Use this:

let
    Source = Folder.Contents ( "C:\Users\SharmaAnt\Downloads\Test" )[[Content]],
    AddedCustom = 
        Table.AddColumn (
            Source,
            "Custom",
            each Table.SelectRows ( Excel.Workbook ( [Content] ), each [Kind] = "Table" )[Data]
        ),
    ExpandedCustom = Table.ExpandListColumn ( AddedCustom, "Custom" )
in
    ExpandedCustom

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.