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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
If I have a measure already that name Selling Price, the measure selling price look like this
Solved! Go to Solution.
Hi @selected_ ,
Yes,you can create 2 measures similarly as below:
Min sales price = MinX(VALUES('Table'[UnitPrice]),'Table'[Selling Price])Max sales price = MAXX(VALUES('Table'[UnitPrice]),'Table'[Selling Price])
And you will see:
For the related .pbix file,pls see attached.
Hi @selected_ ,
Yes,you can create 2 measures similarly as below:
Min sales price = MinX(VALUES('Table'[UnitPrice]),'Table'[Selling Price])Max sales price = MAXX(VALUES('Table'[UnitPrice]),'Table'[Selling Price])
And you will see:
For the related .pbix file,pls see attached.
@selected_ This looks like a measure aggregation problem. See my blog article about that here: https://community.powerbi.com/t5/Community-Blog/Design-Pattern-Groups-and-Super-Groups/ba-p/138149
The pattern is:
MinScoreMeasure = MINX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
MaxScoreMeasure = MAXX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
AvgScoreMeasure = AVERAGEX ( SUMMARIZE ( Table, Table[Group] , "Measure",[YourMeasure] ), [Measure])
etc.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 58 | |
| 45 | |
| 40 | |
| 21 | |
| 18 |