Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
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.
Solved! Go to Solution.
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:
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:
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 |