Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
mlavey24
Frequent Visitor

Display MAX value of a Measure in a card visual based on the filtered Matrix

Hi,

 

I have a matrix visual that displays the 10 closest customers (measured in Kilometers) to another customer, based on an independent slicer selection.

 

Customer NameSales AmountDistance to Selected Customer
Cust1180.3
Cust2710.4
Cust31970.57
Cust4290.87
Cust5511.03
Cust651.03
Cust7921.3
Cust81541.56
Cust9101.62
Cust10132.41

 

The distance in Kilometers is calculated with the following DAX:

 

Distinace in Kilometers:=
VAR Lat1 =
    MIN ( 'Customer X'[Lat] )
VAR Lon1 =
    MIN ( 'Customer X'[Lon] )
VAR Lat2 =
    MIN ( 'Customer Y'[Lat] )
VAR Lon2 =
    MIN ( 'Customer Y'[Lon] )
VAR P =
    DIVIDE ( PI (), 180 )
VAR A =
    0.5
        - COS ( ( Lat2 - Lat1 ) * p ) / 2
        + COS ( Lat1 * p )
            * COS ( lat2 * P )
            * (
                1
                    - COS ( ( Lon2 - Lon1 ) * p )
            ) / 2
VAR Final =
    12742 * ASIN ( ( SQRT ( A ) ) )
RETURN
    Final

Ultimately, I want a dynamic measure that would display the maximum distance from CustX to CustY (in the above example, that would mean 2.41 Km) in a card visual and I am stumped.

1 ACCEPTED SOLUTION
v-chuncz-msft
Community Support
Community Support

@mlavey24 

 

You may refer to the following post.

https://community.powerbi.com/t5/Desktop/DAX-formula-to-work-out-max-value-of-a-measure-HELP/td-p/44...

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-chuncz-msft
Community Support
Community Support

@mlavey24 

 

You may refer to the following post.

https://community.powerbi.com/t5/Desktop/DAX-formula-to-work-out-max-value-of-a-measure-HELP/td-p/44...

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors