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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I have a table that looks like this:
I want the adjusted value for each row to be the sum of the adjustment and the value. [Adjustment] is a measure.
This, for some reason, will not work
Adjusted value = sumx('Table', 'Table'[Value]+[Adjustment])
Solved! Go to Solution.
@Anonymous ,
Seem fine. Try one of the two option
Adjusted value = sumx('Table', 'Table'[Value]+'Table'[Adjustment])
Adjusted value = sum('Table'[Value])+sum('Table'[Adjustment])
@Anonymous ,
Seem fine. Try one of the two option
Adjusted value = sumx('Table', 'Table'[Value]+'Table'[Adjustment])
Adjusted value = sum('Table'[Value])+sum('Table'[Adjustment])
I am an idiot. Tried the second option and it worked like a charm. Thank you very much!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.