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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
DSArkphire
Frequent Visitor

Dynamic Web.Contents Power BI Refresh Error

I’ve run into a problem with my report, I can’t refresh my report on the power bi web service and it labels web.contents as an unsupported function.

pbi1.png

 

I’m calling my data through an API loop and from what I’ve read the problem seems to be an issue with my dynamic data source. I’ve tried to construct a partially static api but I’m not terribly sure how to proceed.

pbi2.png

 

Edit: The is using anonymous authorization. 

 

1 ACCEPTED SOLUTION
DSArkphire
Frequent Visitor

I managed to resolve the issue with the following (note this may not be the same api url but the structure which corrected both remains the same.) 

 

pbi resolved.png

 

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

I have set a Parameter that provides the ability to make a Dynamic URL with the Following Code which would later be merged with a list-to-table Query:

let
Document=(Numero as number)as table =>
let
Source = Web.Contents(“http://www.sanaa.hn/colonias/dbo_fechas_agua_list.php?masterkey1=”&Number.ToText(Numero)&”&mastertab...]),

#”Extracted Table From Html” = Html.Table(Source, {{“Column1”, “TABLE[id=’form_grid_8′] > TR > :nth-child(1), TABLE[id=’form_grid_8′] > * > TR > :nth-child(1)”}, {“Column2”, “TABLE[id=’form_grid_8′] > TR > :nth-child(2), TABLE[id=’form_grid_8′] > * > TR > :nth-child(2)”}, {“Column3”, “TABLE[id=’form_grid_8′] > TR > :nth-child(3), TABLE[id=’form_grid_8′] > * > TR > :nth-child(3)”}, {“Column4”, “TABLE[id=’form_grid_8′] > TR > :nth-child(4), TABLE[id=’form_grid_8′] > * > TR > :nth-child(4)”}}, [RowSelector=”TABLE[id=’form_grid_8′] > TR, TABLE[id=’form_grid_8′] > * > TR”]),
#”Promoted Headers” = Table.PromoteHeaders(#”Extracted Table From Html”, [PromoteAllScalars=true]),
#”Changed Type” = Table.TransformColumnTypes(#”Promoted Headers”,{{“Id Colonia”, Int64.Type}, {“Barrio o Colonia”, type text}, {“Salida de Tanque”, type text}, {“Horario”, type text}})
in

#”Changed Type”
in Document

Static example of one of the URLS would be :”http://www.sanaa.hn/colonias/dbo_fechas_agua_list.php?masterkey1=1&mastertable=dbo.barriocolonia”

How would the Relative Path and Query solution be applied in this context to solve the Refresh Solution in the PBI Service?

DSArkphire
Frequent Visitor

I managed to resolve the issue with the following (note this may not be the same api url but the structure which corrected both remains the same.) 

 

pbi resolved.png

 

v-juanli-msft
Community Support
Community Support

Hi @DSArkphire 

Please check the following blog

Dynamic Web.Contents() and Power BI Refresh Errors

Hope it will work for you!

 

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

blopez11
Super User
Super User

Yes, the first parameter to web contents should be static.  You can use Web.Contents options relative path and query options.  Use query for passing parameters and relative path for extending the url passed as the first parameter.  I don't know the autentication method you are using, but if it is anonymous, your web service or service you are calling must support this for root level of the url

 

Good luck

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.