Forum Discussion
jay_patel
5 years agoHelper IV
Want cumulative
Hello All I want a cumulative for SBU, tried a lot but not getting the result. Attaching Dax and result's too. As you can see I want cumulative of measure "CalculatedbySBU" and the dax for both ...
- 5 years ago
Hi, jay_patel
Please try the below measure.
cumulative =
VAR current = [CalculatedBySBU-date]
RETURN
CALCULATE (
[CalculatedBySBU-date],
FILTER ( ALL ( SDirectSales[SBU.SBU] ), [CalculatedBySBU-date] >= current )
)Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Jihwan_Kim
5 years agoSuper User
Hi, jay_patel
Please try the below measure.
cumulative =
VAR current = [CalculatedBySBU-date]
RETURN
CALCULATE (
[CalculatedBySBU-date],
FILTER ( ALL ( SDirectSales[SBU.SBU] ), [CalculatedBySBU-date] >= current )
)
VAR current = [CalculatedBySBU-date]
RETURN
CALCULATE (
[CalculatedBySBU-date],
FILTER ( ALL ( SDirectSales[SBU.SBU] ), [CalculatedBySBU-date] >= current )
)
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
jay_patel
5 years agoHelper IV
Still not getting cumulative for the same.