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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

City with Highest Sales but lowest profit

 

Hi,

I am using the below DAX expression

 

City with Highest Sales but lowest profit = LOOKUPVALUE('Orders'[City],
                         'Orders'[Profit],
                         Min('Orders'[Profit]),
                         'Orders'[Sales],
                         Max('Orders'[Sales])
)

 

but did not get anything. Please correct me if I am wrong here.

 

 

1 ACCEPTED SOLUTION

@Anonymous

 

You can use this MEASURE

 

Measure =
MINX (
    TOPN ( 1, FILTER ( Orders, Orders[Country] = "India" ), [Profit], ASC ),
    [City]
)

View solution in original post

3 REPLIES 3
Zubair_Muhammad
Community Champion
Community Champion

Hi @Anonymous

 

I believe Your formula will only fetch a city when a particular city has both Maximum Sales and Minimum Profit out of all Citiies

 

Otherwise it will return BLANK

 

So if your data looks like this...your result would be City E

 

 CitySalesProfit
A851935
B891575
C932742
D148311
E90001

 

 But with following table the result would be blank as the City with highest sales doesnot have minimum profit

 

 CitySalesProfit
A851935
B891575
C932742
D148311
E900012
Anonymous
Not applicable

HI,

So if I want in India what is city name having lowest profit? and have used below query:

 

City with lowest profit in India = LOOKUPVALUE('Orders'[City],
                         'Orders'[Profit],
                         Min('Orders'[Profit]),
                         'Orders'[Country],'India'
)

but I am getting error that table name of 'India' cannot found.

@Anonymous

 

You can use this MEASURE

 

Measure =
MINX (
    TOPN ( 1, FILTER ( Orders, Orders[Country] = "India" ), [Profit], ASC ),
    [City]
)

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.