Forum Discussion
Anonymous
4 years agoNot applicable
Dynamic URL for changing date
Hey guys, i need to connect to data via a web API. The URL looks like this: https://hello123.testsite.net/Api/MessageCenter?action=date&value=2022-02-14. It would be very nice, to have the la...
- 4 years ago
In Power Query, open Advanced Editor and replace your Source with this
Source = Web.Page(Web.Contents("https://hello123.testsite.net/Api/MessageCenter?action=date&value=" & DateTime.ToText((DateTime.FixedLocalNow()),"yyyy-MM-dd")))
Anonymous
4 years agoNot applicable
Thank you !