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
hi erveryone
how i can dynamic my local drive path such as (C,D,E,) for import multi file into power query?
Best Regards!
Solved! Go to Solution.
Hi @hamid,
Based on my test, we can use the Parameters to meet your requirement. Here I create a parameter like this.
After that we need to change the M code in the advanced editor, then we can choose the path that we want to import different files in power query. Please notice files will be combined within a given folder as long as they have the same file type and structure (such as the same columns). Here is the M code in advanced editor for your reference.
let
Source = Folder.Files("file path\"& Parameter1),
#"Invoke Custom Function1" = Table.AddColumn(Source, "Transform File from C (3)", each #"Transform File from C (3)"([Content])),
#"Renamed Columns1" = Table.RenameColumns(#"Invoke Custom Function1", {"Name", "Source.Name"}),
#"Removed Other Columns1" = Table.SelectColumns(#"Renamed Columns1", {"Source.Name", "Transform File from C (3)"}),
#"Expanded Transform File from C (3)" = Table.ExpandTableColumn(#"Removed Other Columns1", "Transform File from C (3)", {"ID", "name"}, {"Transform File from C (3).ID", "Transform File from C (3).name"})
in
#"Expanded Transform File from C (3)"
Regards,
Frank
Hi Frank!
Thanks for your answer.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 37 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 132 | |
| 88 | |
| 82 | |
| 68 | |
| 64 |