Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I have a folder with a growing number of files. How can I transpose each file, then combine them? Thanks!
File 1:
Date | 1/1/2023 | 1/2/2023 |
Amount | $50 | $60 |
File 2:
Date | 1/3/2023 | 1/4/2023 |
Amount | $70 | $80 |
Desired end result:
Date | Amount |
1/1/2023 | $50 |
1/2/2023 | $60 |
1/3/2023 | $70 |
1/4/2023 | $80 |
Solved! Go to Solution.
Table.Combine(List.Transform(Folder.Files("your folder")[Content],each Table.PromoteHeaders(Table.Transpose(Excel.Workbook(_)[Data]{0}))))
Table.Combine(List.Transform(Folder.Files("your folder")[Content],each Table.PromoteHeaders(Table.Transpose(Excel.Workbook(_)[Data]{0}))))
Use the Combine & Transform feature and in the transform sample query select your non-date column(s), right click and choose "Unpivot other columns".
Pat
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
10 | |
8 | |
6 | |
6 | |
6 |