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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors