Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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.
Solved! Go to Solution.
@Anonymous
You can use this MEASURE
Measure =
MINX (
TOPN ( 1, FILTER ( Orders, Orders[Country] = "India" ), [Profit], ASC ),
[City]
)
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
| City | Sales | Profit |
| A | 8519 | 35 |
| B | 8915 | 75 |
| C | 9327 | 42 |
| D | 1483 | 11 |
| E | 9000 | 1 |
But with following table the result would be blank as the City with highest sales doesnot have minimum profit
| City | Sales | Profit |
| A | 8519 | 35 |
| B | 8915 | 75 |
| C | 9327 | 42 |
| D | 1483 | 11 |
| E | 9000 | 12 |
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]
)
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 52 | |
| 45 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 107 | |
| 105 | |
| 40 | |
| 33 | |
| 25 |