Forum Discussion
DataSkills
2 years agoResolver I
Gateway being requested for public website
I have built a very simple report that uses the website http://www.xe.com/currencytables to get the latest exchange rates. The report works perfectly in desktop and I can refresh data without an...
- 2 years ago
I managed to get this resolved. It was a bizarrely simple fix.
My original query was as follows for the "source" step in Power Query:
= Web.BrowserContents("http://www.xe.com/currencytables/?from=GBP")
I simply amended this to be:
= Web.Contents("http://www.xe.com/currencytables/?from=GBP")
That fixed it! 🤯
DataSkills
2 years agoResolver I
I managed to get this resolved. It was a bizarrely simple fix.
My original query was as follows for the "source" step in Power Query:
= Web.BrowserContents("http://www.xe.com/currencytables/?from=GBP")
I simply amended this to be:
= Web.Contents("http://www.xe.com/currencytables/?from=GBP")
That fixed it! 🤯
- aj19732 years agoCommunity Champion
Good to know
Thank you too