Forum Discussion
Swizal
2 years agoFrequent Visitor
Rolling balance
Hello Fellow Analysts, I have a issue with the rolling balance row as shown in the picture. i want the balance( a measure) to become cumulative in the rolling balance row. In March 2024 it shoul...
- 2 years ago
Hi, Swizal
try below measureMeasure = SUMX( FILTER( ALL('Table'[Dtae],'Table'[Value],'Table'[Name],'Table'[Supplier Line]), 'Table'[Dtae]<=MAX('Table'[Dtae]) && 'Table'[Name]=MIN('Table'[Name]) && 'Table'[Supplier Line]=min('Table'[Name]) ), [Value] )Best Regards,
Dangar
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Dangar332
Resident Rockstar
2 years agoHi, Swizal
Try below measure
Measure =
SUMX(
FILTER(
ALL('Table'),
'Table'[Dtae]<=MAX('Table'[Dtae])
),
[Value]
)
Best Regards,
Dangar
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Swizal
2 years agoFrequent Visitor
Hi Dangar332 ,
Thankyou for your inputs. It may seem that there is only one context of date ,except ,there is another context of the supplier. and a few more slicers like (line item, planner name) which comes into play. Please find the below snippet of the same.
- Dangar3322 years ago
Resident Rockstar
Hi, Swizal
try below measureMeasure = SUMX( FILTER( ALL('Table'[Dtae],'Table'[Value],'Table'[Name],'Table'[Supplier Line]), 'Table'[Dtae]<=MAX('Table'[Dtae]) && 'Table'[Name]=MIN('Table'[Name]) && 'Table'[Supplier Line]=min('Table'[Name]) ), [Value] )Best Regards,
Dangar
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.