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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I want to calculate the sum of two columns were the state of 'inprogess' is subtracted from 'done'
Solved! Go to Solution.
Hi @Anonymous !
Your calculation should be like this:
Story Points Start =
CALCULATE(
SUM( Burndown[StoryPoint] ),
Burndown[State] = "InProgress"
)
- CALCULATE(
SUM( Burndown[StoryPoint] ),
Burndown[State] = "Done"
)
Let me know if that helps!
Hi @Anonymous,
in the filter context, you can't get "In Progress" and "Done" status at the same time. You should calculate both separately and then subtract
Story Points Start =
Var a = CALCULATE(SUM( Burndown[StoryPoint] ),Burndown[State] = "InProgress")
Var b = CALCULATE(SUM( Burndown[StoryPoint] ),Burndown[State] = "Done")
return
a-b
Thanks,
Deevaker Goel
+91-9711975011
deevaker@hotmail.com
https://www.linkedin.com/in/deevakerg/
Hi @Anonymous !
Your calculation should be like this:
Story Points Start =
CALCULATE(
SUM( Burndown[StoryPoint] ),
Burndown[State] = "InProgress"
)
- CALCULATE(
SUM( Burndown[StoryPoint] ),
Burndown[State] = "Done"
)
Let me know if that helps!
Done shows as a negative value.. but I think we are on the right track! Maybe I'll separate the math