Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

Cumulative Sum on Text Field

Hi, I am trying to present a cumulative sum by priority and project with the two being a concatenated field in a separate table.   Example. (Priority Initiative) 1-Warehouse 2-Field 3-Retail 1...
  • Fowmy's avatar
    Fowmy
    2 years ago

    Anonymous 

    Please check the attached file:

    Running Total = 
    CALCULATE(
        [Total Sales],
        'Sales Table'[Priortiy] <= MAX( 'Priority Table'[Priority] ),
        ALLSELECTED( 'Priority Table' )   
    )