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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
odumna
Helper I
Helper I

Please make sure your data gateway (personal mode) is installed and configured properly

Hi
I have a problem with refreshing my report on portal.
I get error "Please make sure your data gateway (personal mode) is installed and configured properly."

In Report I use only one datasource. This datasourse is the web site "https://www.global-rates.com/interest-rates/libor/american-dollar/usd-libor-interest-rate-12-months.....

 

In Desktop the report refresh successfully. But on portal I get error "Please make sure your data gateway (personal mode) is installed and configured properly."

 

What do I need to do ? What and Where do I need check to resolve the issue?

Exmple of my query 

let
Source = Web.BrowserContents("https://www.global-rates.com/interest-rates/libor/american-dollar/usd-libor-interest-rate-12-months...."),
#"Table from HTML" = Html.Table(Source, {{"Column1", "TABLE:nth-child(15) > TBODY > TR:nth-child(1) > TD:nth-child(1) > TABLE:nth-child(1) > * > TR > TD[colspan=""2""]:not([rowspan]):nth-child(1):nth-last-child(1), TABLE:nth-child(15) > TBODY > TR:nth-child(1) > TD:nth-child(1) > TABLE:nth-child(1) > * > TR > TD:not([colspan]):not([rowspan]):nth-child(1):nth-last-child(2)"}, {"Column2", "TABLE:nth-child(15) > TBODY > TR:nth-child(1) > TD:nth-child(1) > TABLE:nth-child(1) > * > TR > TD[colspan=""2""]:not([rowspan]):nth-child(1):nth-last-child(1), TABLE:nth-child(15) > TBODY > TR:nth-child(1) > TD:nth-child(1) > TABLE:nth-child(1) > * > TR > TD:not([colspan]):not([rowspan]):nth-child(1):nth-last-child(2) + TD:not([colspan]):not([rowspan]):nth-child(2):nth-last-child(1)"}}, [RowSelector="TABLE:nth-child(15) > TBODY > TR:nth-child(1) > TD:nth-child(1) > TABLE:nth-child(1) > * > TR"]),
#"Headers up" = Table.PromoteHeaders(#"Table from HTML", [PromoteAllScalars=true])
in
#"Headers up"

1 ACCEPTED SOLUTION

There is no guarantee you can get data from web site without a gateway. Reading web pages usually has that issue. The Web connector works in many many ways and the automatic refresh it's usually for APIs when the response is a json or xml.

In your case the scrapping code generated by the web connector wizards it's a code that needs a gateway to run. In order to check if you can adapt it, you might need good power query skills to check if there is another way around to the code. If not then you just can't connect without a gateway.

I hope that helps,


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

Happy to help!

LaDataWeb Blog

View solution in original post

4 REPLIES 4
ibarrau
Super User
Super User

Hi. Usually scrapping web pages with BrowserContents and Html.Table means you need a gateway to process the M code finding html tags.

Unless you can get your response with Web.Contents I don't think you can get rid of the gateway.

I hope that helps,


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

Happy to help!

LaDataWeb Blog

Hi, ibarrau
Thank you for response, how can I get other way data from web site?

I just use standart option with web datasource
below is steps I've done
1) Get New source - Web

odumna_0-1666366014770.png

2) in new window put url

odumna_1-1666366177079.png

3) switch needed table

odumna_2-1666366227905.png


As result I get query  like this :
let
Source = Web.BrowserContents("https://www.global-rates.com/interest-rates/libor/american-dollar/usd-libor-interest-rate-12-months...."),
#"Extracted Table From Html" = Html.Table(Source, {{"Column1", "TABLE:nth-child(5) > * > TR > :nth-child(1)"}}, [RowSelector="TABLE:nth-child(5) > * > TR"]),
#"Changed Type" = Table.TransformColumnTypes(#"Extracted Table From Html",{{"Column1", type text}})
in
#"Changed Type"

There is no guarantee you can get data from web site without a gateway. Reading web pages usually has that issue. The Web connector works in many many ways and the automatic refresh it's usually for APIs when the response is a json or xml.

In your case the scrapping code generated by the web connector wizards it's a code that needs a gateway to run. In order to check if you can adapt it, you might need good power query skills to check if there is another way around to the code. If not then you just can't connect without a gateway.

I hope that helps,


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

Happy to help!

LaDataWeb Blog

Thank you for answer.

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

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.