Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
hello
i am looking to return the name of the product that has the highest unit proce.
product 1 , price 20
product 2 , price 10
product 3 , price 5
so i want to return the product name that has the max unit price = Product 1
how do i do this?
thanks!!
Amrita
Solved! Go to Solution.
Try something like this:
VAR MaxPrice =
MAX(Table[Price])
VAR ProductNames =
CALCULATE (
CONCATENATEX(
VALUES(Table[Product]),
Table[Product],
", " ),
Table[Price] = MaxPrice
)
RETURN ProductNames
i did the below and it worked - nice and simple!
i did the below and it worked - nice and simple!
In your test case that works fine. Just be aware that LOOKUPVALUE will return an error if more than one product has the same max price unless you specify an alternative result. @calerof solution will return BLANK in such cases. I included CONCATENATEX as it will return a list of all max prices.
Hi @AmritaOS ,
You could also use this code:
Highest Price =
CALCULATE(
SELECTEDVALUE(Table_20211202[Product Name]),
Table_20211202[Unit Price] = MAX(Table_20211202[Unit Price])
)
And get this result:
Hope it helps.
Regards,
Fernando
Try something like this:
VAR MaxPrice =
MAX(Table[Price])
VAR ProductNames =
CALCULATE (
CONCATENATEX(
VALUES(Table[Product]),
Table[Product],
", " ),
Table[Price] = MaxPrice
)
RETURN ProductNames
thank you yes this is definatelly way better and future proofs the measure!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
79 | |
78 | |
59 | |
36 | |
33 |
User | Count |
---|---|
94 | |
61 | |
56 | |
49 | |
41 |