Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
Solved! Go to Solution.
@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
@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
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 10 | |
| 6 | |
| 5 | |
| 5 | |
| 2 |