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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Team,
I need your help on creating measure on top of measure. Please see below date where following fields are measures.
Mesures List:
Bid Price (Formula: =CALCULATE(SUM('Lowest Price Option'[Daily Price]))
Qty Bid (Formula: =CALCULATE(SUM('Lowest Price Option'[Qunatity Bid]))
Total Qty bid by all Suppliers (Formula: = CALCULATE(SUM(Bid[Demand]), ALLSELECTED(Bid)))
QtySplit% by Mkt&Supplier (Formula: = Divide([Qty Bid],[Total Qty bid by all Suppliers])
Qty Weig.price by Mkt&Supplier (Formula : = [Bid Price]*[QtySplit% by Mkt&Supplier])
Trying to create new measure called "NewMeasure(Group by BidYear,Market&Date)" on top of measure "Qty Weig.price by Mkt&Supplier" and this new measure should group the totals based on Bid Year, Market, Price Date& Product.
I need expected result in column "L"
Thanks,
Suman.
Solved! Go to Solution.
If it works, please make it as solution
If it works, please make it as solution
Hey,
Try this dax code for a new measure:
NewMeasure =
SUMX(
SUMMARIZE(
'Bid',
'Bid'[Bid Year],
'Bid'[Market],
'Bid'[Price Date],
'Bid'[Product],
"Qty Weig.price by Mkt&Supplier", [Qty Weig.price by Mkt&Supplier]
),
[Qty Weig.price by Mkt&Supplier]
)
I use Summarize to create a table grouped by the specified columns and then to sum the 'Qty Weig.price by Mkt&Supplier' for each group using Sumx.
I have tried your suggestion on "Total Qty bid by All Suppliers" measure first. It is not sumarizing the Qty Bid as expected. Please get the Pbix file from below link.
https://drive.google.com/file/d/1_-qKhnDMCtkdLT869axnLTOw9m4Wo645/view?usp=drive_link
See the below output which i am getting.
Thanks,
Suman.
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 |
|---|---|
| 7 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 15 | |
| 13 | |
| 13 |