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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
jimmybalti
New Member

Hi, facing issue in data pulling

after loading i get only data from 1st page and other 19 pages are showing zero.

jimmybalti_0-1673102778276.png

but in other it says empty:

jimmybalti_1-1673102807020.png

 

kindly please advice. am a beginner.

 

here is the syntax i used.

(Pagestart as text)=>
let
Source = Web.BrowserContents("https://www.expert-seo-training-institute.in/blog/guest-posting-sites/"&Pagestart&"/"),
#"Extracted Table From Html" = Html.Table(Source, {{"S.no", "TABLE[id='tablepress-408'] > TBODY > TR > :nth-child(1)"}, {"website", "TABLE[id='tablepress-408'] > TBODY > TR > :nth-child(2)"}, {"link location", "TABLE[id='tablepress-408'] > TBODY > TR > :nth-child(3)"}}, [RowSelector="TABLE[id='tablepress-408'] > TBODY > TR"]),
#"Changed Type" = Table.TransformColumnTypes(#"Extracted Table From Html",{{"S.no", type text}, {"website", type text}, {"link location", type text}})
in
#"Changed Type"

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @jimmybalti ,

I cannot reproduced you issue. Please have a try.

 

let
    Source = Web.BrowserContents("https://www.expert-seo-training-institute.in/blog/guest-posting-sites/"),
    #"Extracted Table From Html" = Html.Table(Source, {{"Column1", "TABLE[id='tablepress-630'] > * > TR > :nth-child(1)"}, {"Column2", "TABLE[id='tablepress-630'] > * > TR > :nth-child(2)"}, {"Column3", "TABLE[id='tablepress-630'] > * > TR > :nth-child(3)"}}, [RowSelector="TABLE[id='tablepress-630'] > * > TR"]),
    #"Promoted Headers" = Table.PromoteHeaders(#"Extracted Table From Html", [PromoteAllScalars=true]),
    #"Changed Type" = Table.TransformColumnTypes(#"Promoted Headers",{{"S.No.", type date}, {"Website", type text}, {"Link Type", type text}})
in
    #"Changed Type"

 

vpollymsft_0-1673227928298.png

Extract data from a Web page by example in Power BI Desktop - Power BI | Microsoft Learn

 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Polly

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @jimmybalti ,

I cannot reproduced you issue. Please have a try.

 

let
    Source = Web.BrowserContents("https://www.expert-seo-training-institute.in/blog/guest-posting-sites/"),
    #"Extracted Table From Html" = Html.Table(Source, {{"Column1", "TABLE[id='tablepress-630'] > * > TR > :nth-child(1)"}, {"Column2", "TABLE[id='tablepress-630'] > * > TR > :nth-child(2)"}, {"Column3", "TABLE[id='tablepress-630'] > * > TR > :nth-child(3)"}}, [RowSelector="TABLE[id='tablepress-630'] > * > TR"]),
    #"Promoted Headers" = Table.PromoteHeaders(#"Extracted Table From Html", [PromoteAllScalars=true]),
    #"Changed Type" = Table.TransformColumnTypes(#"Promoted Headers",{{"S.No.", type date}, {"Website", type text}, {"Link Type", type text}})
in
    #"Changed Type"

 

vpollymsft_0-1673227928298.png

Extract data from a Web page by example in Power BI Desktop - Power BI | Microsoft Learn

 

 

If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .

 

Best Regards
Community Support Team _ Polly

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors