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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello,
I have below sample data and need a measure to calculate a sum of each unique package label based on the individual package IDs:
Package Label | Package ID | Line Item Cost |
45557 | 1110 | $995.95 |
45557 | 1118 | $493.00 |
45557 | 1119 | $948.05 |
I need an outcome like this:
Package Label | Package ID | Line Item Cost | Total Package Cost |
45557 | 1110 | $995.95 | $2,437.00 |
45557 | 1118 | $493.00 | $2,437.00 |
45557 | 1119 | $948.05 | $2,437.00 |
I have tried the below in DAX, but the measure just returns the line item cost again:
Unique Package Label Costs = SUMX(VALUES('table'[package label]),CALCULATE(SUM('table'[line item cost])))
Unique Package Lable Costs = SUMX(DISTINCT('table'[package label]),CALCULATE(SUM('table'[line item cost])))
Thanks,
Alex
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
Total package cost: =
CALCULATE (
SUM ( 'table'[Line Item Cost] ),
ALLEXCEPT ( 'table', 'table'[Package Label] )
)
Hi,
Please check the below picture and the attached pbix file.
Total package cost: =
CALCULATE (
SUM ( 'table'[Line Item Cost] ),
ALLEXCEPT ( 'table', 'table'[Package Label] )
)
This worked. Thank you!
Hi @ktbam_7
please try below
This worked as well! Thank you.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
10 | |
7 | |
5 | |
4 | |
3 |
User | Count |
---|---|
12 | |
11 | |
9 | |
8 | |
8 |