Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi,
I have a stripped down data for 1 opportunity below. Actual data has 100s of opportunities. I want to create 2 measures.
| Opportunity | Business | Product Line | Opp Value | Order Value |
| Opp1 | Software | PL1 | 100 | 200 |
| Opp1 | Software | PL2 | 200 | 200 |
| Opp1 | Software | PL3 | 300 | 200 |
| Opp1 | Software | PL4 | 400 | 200 |
| Opp1 | Hardware | PL1 | 100 | 300 |
| Opp1 | Hardware | PL2 | 200 | 300 |
| Opp1 | Hardware | PL3 | 300 | 300 |
| Opp1 | Hardware | PL4 | 400 | 300 |
Opp measure = My opp value is at product line level which means I want the measure to be 100+200+300+400 = 1000
Order value measure = My order value is at Business column lebel which means I want the measure to be 200+300 = 500
How can i acheive these measures?
Solved! Go to Solution.
@klehar add two measures:
Business Value = SUMX ( SUMMARIZE ( Opp, Opp[Opportunity], Opp[Business], "@Value", MAX ( Opp[Order Value] ) ), [@Value] )
Business Value = SUMX ( SUMMARIZE ( Opp, Opp[Opportunity], Opp[Business], "@Value", MAX ( Opp[Order Value] ) ), [@Value] )
✨ Follow us on LinkedIn
Check my latest blog post Comparing Selected Client With Other Top N Clients | PeryTUS I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡ Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@klehar SUMMARIZE is creating a virtual table and "@value" is just a column name to hold the max value in that virtual table. I hope it helps.
✨ Follow us on LinkedIn
Check my latest blog post Comparing Selected Client With Other Top N Clients | PeryTUS I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡ Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@klehar add two measures:
Business Value = SUMX ( SUMMARIZE ( Opp, Opp[Opportunity], Opp[Business], "@Value", MAX ( Opp[Order Value] ) ), [@Value] )
Business Value = SUMX ( SUMMARIZE ( Opp, Opp[Opportunity], Opp[Business], "@Value", MAX ( Opp[Order Value] ) ), [@Value] )
✨ Follow us on LinkedIn
Check my latest blog post Comparing Selected Client With Other Top N Clients | PeryTUS I would ❤ Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!
⚡ Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.⚡
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
i am confused about your sample data
| Opportunity | Business | Product Line | Opp Value | Order Value |
| Opp1 | Software | PL1 | 100 |
100 |
| Opp1 | Software | PL2 | 200 | 200 |
| Opp1 | Software | PL3 | 300 | 300 |
| Opp1 | Software | PL4 | 400 | 400 |
| Opp1 | Hardware | PL1 | 1000 | 500 |
| Opp1 | Hardware | PL2 | 2000 | 600 |
| Opp1 | Hardware | PL3 | 3000 | 700 |
| Opp1 | Hardware | PL4 | 4000 | 800 |
what's your expected result for above sample data?
Proud to be a Super User!
hI @ryan_mayu
so i want to measures. lets call it opp value new and order value new
opp value is repeating at product line level
order value is repeating at business column level.
This is happening because the table is denormalised.
I dont want repititve values
so as explaineda above
opp value new measure = 100+200+300+400 (at product line level)
order value new measure = 200 + 300 (at software level)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 75 | |
| 36 | |
| 31 | |
| 29 | |
| 26 |