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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 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