Hi all,
In PowerBI Desktop i have a function which generates a list of numbers {1,101,201,.....}
I use this list to pass value to "offset" parameter in a Web API.
This works fine in PowerBI Desktop but not in Powerbi.com
I have the below issue while i try to schedule the data refresh.
I read the below article on how to use the RelativePath but not sure how i can use it in my case.
my codes look like below :
Function : getPage
(page as text) =>
let
Source = Json.Document(Web.Contents("https://webexapis.com/v1/meetings?meetingType=meeting&from=2019-11-01T00:00:00Z&to=2020-12-31T00:00:... page &"&max=100", [Headers=[Authorization="Bearer PF84_ea939dd2-dd40-4d98-b942-28e87fe4cc1f"]])),
items = Source[items],
#"Converted to Table" = Table.FromList(items, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
#"Expanded Column1" = Table.ExpandRecordColumn(#"Converted to Table", "Column1", {"id", "meetingSeriesId", "scheduledMeetingId", "title", "agenda", "meetingType", "state", "timezone", "start", "end", "hostUserId", "hostDisplayName", "hostEmail", "webLink"}, {"Column1.id", "Column1.meetingSeriesId", "Column1.scheduledMeetingId", "Column1.title", "Column1.agenda", "Column1.meetingType", "Column1.state", "Column1.timezone", "Column1.start", "Column1.end", "Column1.hostUserId", "Column1.hostDisplayName", "Column1.hostEmail", "Column1.webLink"})
in
#"Expanded Column1"
Query1 :
let
List = List.Numbers(1,99,100),
#"Converted to Table" = Table.FromList(List, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
#"Changed Type" = Table.TransformColumnTypes(#"Converted to Table",{{"Column1", type text}}),
#"Invoked Custom Function" = Table.AddColumn(#"Changed Type", "Data", each getPage([Column1])),
#"Expanded Data" = Table.ExpandTableColumn(#"Invoked Custom Function", "Data", {"Column1.id", "Column1.start"}, {"Data.Column1.id", "Data.Column1.start"}),
#"Filtered Rows" = Table.SelectRows(#"Expanded Data", each true),
#"Sorted Rows" = Table.Sort(#"Filtered Rows",{{"Data.Column1.start", Order.Ascending}, {"Column1", Order.Ascending}})
in
#"Sorted Rows"
Hi @LP2803 ,
Noticed that you have posted simliar issues in the forum, please refer this post:
https://community.powerbi.com/t5/Power-Query/Formula-Firewall-Error/td-p/1519059
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
196 | |
80 | |
78 | |
76 | |
47 |
User | Count |
---|---|
168 | |
90 | |
86 | |
80 | |
74 |