Velocity Story points

I know this will sound weird but I wanna add up two numbers to get story points at closing (
[Measures].[Sprint Story Points at closing],
[Transition Status].[Closed] + [Measures].[Sprint Story Points at closing],[Transition Status].[QA Complete]
)
I get error how I add this two status points Sorry new here :frowning:

Hi,
This formula is close to what it should be.
The idea of the solution is that this measure is the sum of two tuples and the syntax should be the following:

([Measures].[Sprint Story Points at closing],
[Transition Status].[Closed]) + 
([Measures].[Sprint Story Points at closing],
[Transition Status].[QA Complete])

Please, check the documentation for more about tuples:
https://docs.eazybi.com/eazybi/analyze-and-visualize/calculated-measures-and-members/calculated-measures#Calculatedmeasures-Tuples

Kindly,
Janis, eazyBI support