Forum Discussion

Darryl_Rosin's avatar
Darryl_Rosin
Frequent Visitor
5 months ago
Solved

Refresh with a column containing a custom function

Hello.   My semantic model reads from a sharepoint list. Each row has a column that contains a unique url to another sharepoint site. I have a function that takes the site url from this column and ...
  • v-saisrao-msft's avatar
    v-saisrao-msft
    4 months ago

    Hi Darryl_Rosin,

    The issue occurs because your query builds the SharePoint URL dynamically from a column, creating a dynamic data source that Power BI Service cannot refresh. Microsoft documentation states that such data sources are not supported for refresh in most cases. Try using a static base URL and avoid passing full URLs dynamically; instead, use Web.Contents with RelativePath so only the path changes while the data source remains fixed. This allows the dataset to refresh successfully in the Service.

    Web.Contents - PowerQuery M | Microsoft Learn

    Data refresh in Power BI - Power BI | Microsoft Learn

     

    Thank you.