Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
EnochS
Advocate II
Advocate II

Expand HTML Links from Excel Table in Query Editor

Hello,

 

Does anyone know how to expand the HTML links inside of table? I have an excel table that I created with many links. I have loaded this file into Power BI Desktop in Query Editor and have been trying to "Expand" the html links to display the data found in those links (which are more tables). I thought this might expedite the process instead of creating a new table for each link.. Is there an efficient way to do this? Maybe I need to export this into a web page as an html file? If the way I'm trying doesnt work, is there any other method of doing this more efficiently if i have multiple data sources?

 

Thanks for any help.

 

File Link:
HTML List Example.XLSX

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@EnochS,

There is no data when I open your HTML link. However, you can perform the following steps to get data from all the links in Query Editor.

1. Split the Project Bidding column to get the number. This step generates the following code, you can copy it to the Advanced Editor of your query.

#"Split Column by Delimiter" = Table.SplitColumn(#"Changed Type", "Projects Bidding", Splitter.SplitTextByEachDelimiter({"/"}, QuoteStyle.Csv, true), {"Projects Bidding.1", "Projects Bidding.2"}),
    #"Changed Type1" = Table.TransformColumnTypes(#"Split Column by Delimiter",{{"Projects Bidding.1", type text}, {"Projects Bidding.2", type text}}),
    #"Split Column by Delimiter1" = Table.SplitColumn(#"Changed Type1", "Projects Bidding.1", Splitter.SplitTextByEachDelimiter({"/"}, QuoteStyle.Csv, true), {"Projects Bidding.1.1", "Projects Bidding.1.2"}),

1.JPG

2. Add a new blank query and paste the following code in the Advanced Editor of the blank query. And rename the query to fnGetByid.

let
fnGetByid = (urlid as text) =>
let
    Source = Web.Page(Web.Contents(Text.Replace("http://www.bxwa.com/bxwa_toc/private/{id}/toc.html","{id}", urlid))),
    Data0 = Source{0}[Data]
in
    Data0
in
fnGetByid

3. Add a custom column in the Data table which is imported from the Excel file, then expand the custom column.

=fnGetByid([Projects Bidding.1.2])

2.JPG3.JPG

Reference:
https://kzhendev.wordpress.com/2014/04/14/scraping-the-web-with-power-query/

Regards,
Lydia

View solution in original post

1 REPLY 1
Anonymous
Not applicable

@EnochS,

There is no data when I open your HTML link. However, you can perform the following steps to get data from all the links in Query Editor.

1. Split the Project Bidding column to get the number. This step generates the following code, you can copy it to the Advanced Editor of your query.

#"Split Column by Delimiter" = Table.SplitColumn(#"Changed Type", "Projects Bidding", Splitter.SplitTextByEachDelimiter({"/"}, QuoteStyle.Csv, true), {"Projects Bidding.1", "Projects Bidding.2"}),
    #"Changed Type1" = Table.TransformColumnTypes(#"Split Column by Delimiter",{{"Projects Bidding.1", type text}, {"Projects Bidding.2", type text}}),
    #"Split Column by Delimiter1" = Table.SplitColumn(#"Changed Type1", "Projects Bidding.1", Splitter.SplitTextByEachDelimiter({"/"}, QuoteStyle.Csv, true), {"Projects Bidding.1.1", "Projects Bidding.1.2"}),

1.JPG

2. Add a new blank query and paste the following code in the Advanced Editor of the blank query. And rename the query to fnGetByid.

let
fnGetByid = (urlid as text) =>
let
    Source = Web.Page(Web.Contents(Text.Replace("http://www.bxwa.com/bxwa_toc/private/{id}/toc.html","{id}", urlid))),
    Data0 = Source{0}[Data]
in
    Data0
in
fnGetByid

3. Add a custom column in the Data table which is imported from the Excel file, then expand the custom column.

=fnGetByid([Projects Bidding.1.2])

2.JPG3.JPG

Reference:
https://kzhendev.wordpress.com/2014/04/14/scraping-the-web-with-power-query/

Regards,
Lydia

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.