Forum Discussion
sceccolini
2 years agoFrequent Visitor
Recursive execution of REST from Power BI table
I have a table with a column containing the services I need to call to retrieve some other data, which needs to be modified with other further steps once I can return the records from these services....
- 2 years ago
sceccolini
Can you use below query in a blank query and paste any one of the URL and let me know what you see?
let
Source =Json.Document(Web.Contents("URL"))
in
Source
Or use the below file and let me know.
NaveenGandhi
2 years agoMemorable Member
sceccolini
Can you use below query in a blank query and paste any one of the URL and let me know what you see?
let
Source =Json.Document(Web.Contents("URL"))
in
Source
Or use the below file and let me know.
sceccolini
2 years agoFrequent Visitor
It works! I can just add a new custom column with this formula, and then I can manage it like any other transformation. Thank you!