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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
The excel files in a folder start like the SS. i.e., First two rows are some information and header starts on 3rd row.
When loading the folder into power BI, I want to know how I to remove first two rows from all excel files in the folder.
Solved! Go to Solution.
let
source=Folder.Files("your folder full path"),
custom1=Table.Combine(List.Transform(source[Content],each Table.PromoteHeaders(Table.Skip(Excel.Workbook(_)[Data]{0},2))))
in custom1
let
source=Folder.Files("your folder full path"),
custom1=Table.Combine(List.Transform(source[Content],each Table.PromoteHeaders(Table.Skip(Excel.Workbook(_)[Data]{0},2))))
in custom1
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.