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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Anonymous
Not applicable

Query contains unsupported function. Function name: Web.Contents

Hello everyone

 

I'm trying to adapt my url to make the query based on this topic and this other link, but that doesn't make the update work.

 

How can I do the url partitioning in the correct way?

 

 

token_ = #"Column1 Expandido"{0}[Token],

//Url
url = "https://services3.arcgis.com/xxxxxxxyyyyzzzz/arcgis/rest/services/service_abr54aahsh789sdsg/FeatureServer/15/query?where=1%3D1&outFields=*&returnGeometry=false&f=json&token=" & token_,
    
Source_fs = Json.Document(Web.Contents(url)),
       
//Query
features = Source_fs[features],
#"Converted to Table" = Table.FromList(features, Splitter.SplitByNothing(), null, null, ExtraValues.Error),

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hello @Jimmy801 


That was the mistake. "Query contains function not supported. Function name: Web.Contents",

Partitioning would be to split the query into parts so that this error would disappear. 
See this article; https://docs.microsoft.com/pt-br/powerquery-m/web-contents

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hello @Jimmy801 

The problem was that the data was updated on the PBI desktop, but not on the PBI Service, it was an error on the Web.Contents.

I managed to solve it like this

 Source_fs = Json.Document(Web.Contents("https://services3.arcgis.com/xxxxxxxyyyyzzzz/arcgis/rest/services/service_abr54aahsh789sdsg/FeatureS..." & token_)),

Jimmy801
Community Champion
Community Champion

Hello @Anonymous 

 

what error you get?

From your code you take the first row of a specific column to append it to the web-address and then read it. There is nothing wrong about it. What you mean by partioning? Your address is hardcoded and extended by an text what should give you a valid address I suppose. So nothing wrong in the tecnique.


If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too

Have fun

Jimmy

Anonymous
Not applicable

Hello @Jimmy801 


That was the mistake. "Query contains function not supported. Function name: Web.Contents",

Partitioning would be to split the query into parts so that this error would disappear. 
See this article; https://docs.microsoft.com/pt-br/powerquery-m/web-contents

Hello @Anonymous 

 

so you were able to fix it?

 

BR

 

Jimmy

Anonymous
Not applicable

Yes

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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