Forum Discussion
IliasIdrissi_99
3 years agoRegular Visitor
Creating a cumulative measure based on fixed values
Hi, i'm having problems with creating a cumulative/running total measure. My situation is that i have two measure: First one Second one The second measure is similar to the fi...
- 3 years ago
Hi IliasIdrissi_99 ,
Please try:
Cumulative Measure = SUMX ( FILTER ( ALLSELECTED ( an_calendario[EOMONTH_DATE] ), [EOMONTH_DATE] <= MAX ( 'an_calendario'[EOMONTH_DATE] ) ), [Fixed Measure] )Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-jianboli-msft
3 years agoCommunity Support
Hi IliasIdrissi_99 ,
Please try:
Cumulative Measure =
SUMX (
FILTER (
ALLSELECTED ( an_calendario[EOMONTH_DATE] ),
[EOMONTH_DATE] <= MAX ( 'an_calendario'[EOMONTH_DATE] )
),
[Fixed Measure]
)
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
IliasIdrissi_99
3 years agoRegular Visitor
Thank you, this is what i was looking for!