Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi everyone,
I have an API with Date (from & to); I wanted to make the API dynamic to get the data from 3 days ago to 6 days ahead; I did the below query.
let
yesterday = Date.ToText(Date.From(DateTime.LocalNow() - #duration(3, 0, 0, 0)), "by-MM-dd"),
toDate = Date.ToText(Date.From(DateTime.LocalNow() + #duration(6, 0, 0, 0)), "by-MM-dd"),
baseAPIURL = "https://XXXX/XXXXX/XXXXX",
API URL = baseAPIURL & "from=" & yesterday & "&to=" & toDate,
Source = Json.Document(Web.Contents(apiUrl, [Headers=[#"Token"="XXXXXXXXXXXXXXXX"]]))
in
Source
it worked on the Desktop, but as a dataset, I can not refresh the dataset, it gave me the error
(This dataset includes a dynamic data source. This dataset won't be refreshed since active data sources aren't restored in the Power BI service.)
Someone online said to use the RelativePath function, but this function does not work with Date.
Can someone advise me if this issue has a solution???
Thank you all
Hi @inawab ,
Please try this:
let
yesterday = Date.ToText(Date.From(DateTime.LocalNow() - #duration(3, 0, 0, 0)), "by-MM-dd"),
toDate = Date.ToText(Date.From(DateTime.LocalNow() + #duration(6, 0, 0, 0)), "by-MM-dd"),
baseAPIURL = "https://XXXX/XXXXX/XXXXX",
apiUrl = baseAPIURL & "from=" & yesterday & "&to=" & toDate,
Source = Json.Document(Web.Contents("https://XXXX/XXXXX/XXXXX", [RelativePath=apiUrl, Headers=[#"Token"="XXXXXXXXXXXXXXXX"]]))
in
Source
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |