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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
technologyLMM
Frequent Visitor

Dynamic Data Source / date

Hi, when I am writing the below script in PowerBi Desktop, it works properly and "Date" is refreshed dynamically.

However, when I publish it online, the following error occurs: "This dataset includes a dynamic data source. Since dynamic data sources aren't refreshed in the Power BI service, this dataset won't be refreshed. Learn more: https://aka.ms/dynamic-data-sources."

 

I would highly appreciate your assistance on how to amend the below script, in order to be able to dynamically refresh online.

 

 

let
    Date = Date.ToText(Date.AddDays(Date.From(DateTime.LocalNow()),-10),"yyyy-MM-dd"),

    Source = Csv.Document(Web.Contents("...URL...&granularity=hour&fromDate=" & Date &"&toDate=2030-01-01&format=csv"),[Delimiter=",", Columns=5, Encoding=65001, QuoteStyle=QuoteStyle.None]),

...

 

Your assistance will be much appreciated.

 

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

Try putting the parameters in like this

Web.Contents("...URL...", [Query=[granularity="hour", fromDate=Date, toDate="2030-01-01", format="csv"]]))

See this blog article for more detail:

https://blog.crossjoin.co.uk/2016/08/23/web-contents-m-functions-and-dataset-refresh-errors-in-power...

View solution in original post

2 REPLIES 2
technologyLMM
Frequent Visitor

Dear @AlexisOlson many many thanks for your assistance! 🙂

AlexisOlson
Super User
Super User

Try putting the parameters in like this

Web.Contents("...URL...", [Query=[granularity="hour", fromDate=Date, toDate="2030-01-01", format="csv"]]))

See this blog article for more detail:

https://blog.crossjoin.co.uk/2016/08/23/web-contents-m-functions-and-dataset-refresh-errors-in-power...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors
Top Kudoed Authors