Forum Discussion
Anonymous
5 years agoNot applicable
Prevent Bing map API function from running/refreshing when the query is edited.
hello all, I created a function that calls the Bing map web service, it works great and gives me distance traveled and duration between my start and finish locations, however it is a bit slow. My...
- 5 years ago
Anonymous you cannot avoid the full refresh, as soon as you refresh, it is going to refresh and make that function call for each row.
Anonymous
5 years agoNot applicable
Thank you, that looks like it will do the trick, I will try it and post the result and accept your solution.
Anonymous
5 years agoNot applicable
Here are my current steps, I tried inserting the condition with no luck. The error indicated that Distance could not be converted?
#"Added Custom" = Table.AddColumn(#"Added Conditional Column", "Distance", each fxMilesDuration([Address],[Work Location])),
#"Expanded Distance" = Table.ExpandTableColumn(#"Added Custom", "Distance", {"TravelDistance", "TravelDuration"}, {"Distance.TravelDistance", "Distance.TravelDuration"})
in
#"Expanded Distance"