Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I was able to calculate dynamically distnace between two points thanks using the following DAX, thanks to a post on Radacad Blog
Kilometers = var Lat1 = MIN('From City'[lat]) var Lng1 = MIN('From City'[lng]) var Lat2 = MIN('To Cities'[lat]) var Lng2 = MIN('To Cities'[lng]) ---- Algorithm here ----- var P = DIVIDE( PI(), 180 ) var A = 0.5 - COS((Lat2-Lat1) * p)/2 + COS(Lat1 * p) * COS(lat2 * P) * (1-COS((Lng2- Lng1) * p))/2 var final = 12742 * ASIN((SQRT(A))) return final
However I need to calculate the number of suppliers within X Km of a suburb, I have the lat & long of all the suburbs and suppliers.
Struggling to get something to work... any assistance with this would be greatly appreciated...
Solved! Go to Solution.
Hi @DamienW
Here's a mock-up of how I might do it.
Create a measure Suburb Supplier Distance that computes the distance between a single Supplier & Suburb (same formula as you had):
Suburb Supplier Distance = IF ( AND ( HASONEVALUE ( Supplier[Supplier] ), HASONEVALUE ( Suburb[Suburb] ) ), VAR Lat1 = SELECTEDVALUE ( Supplier[Latitude] ) VAR Lng1 = SELECTEDVALUE ( Supplier[Longitude] ) VAR Lat2 = SELECTEDVALUE ( Suburb[Latitude] ) VAR Lng2 = SELECTEDVALUE ( Suburb[Longitude] ) VAR P = DIVIDE ( PI (), 180 ) VAR A = 0.5 - COS ( ( Lat2 - Lat1 ) * p ) / 2 + COS ( Lat1 * p ) * COS ( lat2 * P ) * ( 1 - COS ( ( Lng2 - Lng1 ) * p ) ) / 2 VAR final = 12742 * ASIN ( ( SQRT ( A ) ) ) RETURN final )
Number of Suppliers within Selected Distance of Suburb = VAR MinDistance = MIN ( Distance[Distance] ) VAR MaxDistance = MAX ( Distance[Distance] ) RETURN COUNTROWS ( FILTER ( Supplier, [Suburb Supplier Distance] >= MinDistance && [Suburb Supplier Distance] <= MaxDistance ) )This is written so that you can have both lower and upper bounds on the distance, but you may want to rewrite with just an upper bound on the distance.
Well that's how I would do it. It may have to be adapted depending how your tables are structured.
Regards,
Owen
Great post...I was wondering if you would know how to convert this to miles instead of km? Also, the number in VAR final = '12742', what is the number referencing to? Thanks again.
Hi,
I have the same scenario in my work, i have calculated distance as sugeasted but along with this i need to show supplier along with all the suburbs in a particular distance from it in one world map.
can anyone please guide me . how can i achieve it .
@Waynesaaiman could you share detail of your tables or a PBIX with your current data model, and how you want the report to behave?
I'm assuming you want certain visuals to be filtered to the closest supplier to another selected location?
We should be able to do this with some sort of measure that filters suppliers down to just the closest one.
Hi @DamienW
Here's a mock-up of how I might do it.
Create a measure Suburb Supplier Distance that computes the distance between a single Supplier & Suburb (same formula as you had):
Suburb Supplier Distance = IF ( AND ( HASONEVALUE ( Supplier[Supplier] ), HASONEVALUE ( Suburb[Suburb] ) ), VAR Lat1 = SELECTEDVALUE ( Supplier[Latitude] ) VAR Lng1 = SELECTEDVALUE ( Supplier[Longitude] ) VAR Lat2 = SELECTEDVALUE ( Suburb[Latitude] ) VAR Lng2 = SELECTEDVALUE ( Suburb[Longitude] ) VAR P = DIVIDE ( PI (), 180 ) VAR A = 0.5 - COS ( ( Lat2 - Lat1 ) * p ) / 2 + COS ( Lat1 * p ) * COS ( lat2 * P ) * ( 1 - COS ( ( Lng2 - Lng1 ) * p ) ) / 2 VAR final = 12742 * ASIN ( ( SQRT ( A ) ) ) RETURN final )
Number of Suppliers within Selected Distance of Suburb = VAR MinDistance = MIN ( Distance[Distance] ) VAR MaxDistance = MAX ( Distance[Distance] ) RETURN COUNTROWS ( FILTER ( Supplier, [Suburb Supplier Distance] >= MinDistance && [Suburb Supplier Distance] <= MaxDistance ) )This is written so that you can have both lower and upper bounds on the distance, but you may want to rewrite with just an upper bound on the distance.
Well that's how I would do it. It may have to be adapted depending how your tables are structured.
Regards,
Owen
Thanks, worked a treat, ended up ditching the distance parameter table, and just created three measures with the distances that i wanted...
E.g
Suppliers in 5km = COUNTROWS (
FILTER (
Supplier,
[Kilometers] <= 5))
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
86 | |
82 | |
70 | |
49 |
User | Count |
---|---|
143 | |
125 | |
108 | |
60 | |
55 |