Forum Discussion

Swizal's avatar
Swizal
Frequent Visitor
2 years ago
Solved

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...
  • Dangar332's avatar
    Dangar332
    2 years ago

    Hi, Swizal 

    try below measure

    Measure = 
    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.