Hi @Anonymous ,
Do you want to calculate the distance between two location columns?
I've made a similar test and found that: it's only supported to calculate the distance between two location columns' cities.
The point is:
Location column display as these columns in powerapps:
'location1: City'
'location1: Country/Region'
'location1: Name'
'location1: Postal Code'
location1: State'
'location1: Street'
The most detailed columns are 'location1: City' and 'location1: Street'.
I try to use 'location1: Street' to calculate distance, but received error.
Using 'location1: City' will work.
Firstly, you need to connect with bing maps.
Then use this formula to calculate:
BingMaps.GetRoute(ThisItem.'location1: City',ThisItem.'location2: City').travelDistance
Then you will get the distance between cities in location1 column and location2 column.
Maybe you want to know more about this function:
https://docs.microsoft.com/en-us/connectors/bingmaps/#get-route
Best regards,