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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a html file that has multiple tables. The number of tables can change everytime the file is updated and they all have the same structure.
I want to ensure that all tables are loaded, even if the number changes
Thanks in Advance
Solved! Go to Solution.
When you have imported that HTML to this stage
Add this to at the end of your code (replace Your_Previous_Step)
FilteredRows = Table.SelectRows(Your_Previous_Step, each ([Source] = "Table")),
Data = Table.Combine(FilteredRows[Data])
in
Data
Result (it will combine all filtered tables dynamicaly)
A dummy file with 3 tables. But as i mentioned it could be more or less tables
When you have imported that HTML to this stage
Add this to at the end of your code (replace Your_Previous_Step)
FilteredRows = Table.SelectRows(Your_Previous_Step, each ([Source] = "Table")),
Data = Table.Combine(FilteredRows[Data])
in
Data
Result (it will combine all filtered tables dynamicaly)
I got it, thanks a lot!