Forum Discussion
jp2020
Helper I
5 years agoCumulative Running Total Issue with Legend
Hi all, I have a cumulative column working using quick measure: Cumulative Amount= CALCULATE ( SUM('Table'[Amount] ), FILTER (ALLSELECTED('Table'), 'Table'[ORDER_DATE] <= MAX( 'Table'[ORD...
- 5 years ago
jp2020 , Try if this can help
Cumulative Amount= CALCULATE (
SUM('Table'[Amount] ),
FILTER (ALLSELECTED('Table'),'NT Transactions'[Client_Type] =max('NT Transactions'[Client_Type] ) &&
'NT Transactions'[ORDER_DATE] <= MAX( 'NT Transactions'[ORDER_DATE] )
)
)
amitchandak
Super User
5 years agojp2020 , Try if this can help
Cumulative Amount= CALCULATE (
SUM('Table'[Amount] ),
FILTER (ALLSELECTED('Table'),'NT Transactions'[Client_Type] =max('NT Transactions'[Client_Type] ) &&
'NT Transactions'[ORDER_DATE] <= MAX( 'NT Transactions'[ORDER_DATE] )
)
)
jp2020
Helper I
5 years agoThat worked perfectly, thank you!