Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I am very new to Power BI, i would like to create a report that
1. automatically loads multiple all tables from multiple excels
2. Compare and display differences between multiple excels, by matching their table names. Then, further match the same named tables by the first column "Parameter".
If anyone has better suggestions, I am trying to create a data management system for storing and visualizing contrast in parameters between experiments.
Hi @Grasswall
You can achieve this in Power BI by following these steps:
1. Load Multiple Excel Files from a Folder:
2. Extract Tables from Each Excel File:
3. Filter and Select Specific Tables:
= Table.SelectRows(Excel.Workbook([Content]), each [Kind] = "Table" and [Name] = "YourTableName"){0}[Data]
4. Combine Tables into a Single Table:
5. Compare Data by Matching Table Names and Parameters:
6. Visualize the Differences:
Additional Tips:
By following these steps, you can create a dynamic report that automatically loads and compares tables from multiple Excel files, matching them by table name and parameter.
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
ingest all these sources into a single table, and include the source name (ie the file name and sheet name) as a column.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.