In power BI, I would like to iterate a list of values which are returned by a web service as Json object.
I have the query as follow:
let
Source = Json.Document(Web.Contents("xyz.api.crm5.dynamics.com/.../incidents")),
value = Source[value],
count = List.Count(value),
value1 = value{0},
value2 = value1[NRIC_x002e_governmentid]
in
value2
---
The web service will return list of data, how can I loop thru the data, currently I put a "0" in the index for value1=value{0} to get the 1st value, however if there're a lot of data, how can I iterate the data to retrieve all the values.
Please advise, thanks.
*This post is locked for comments