Forum Discussion
jp2020
5 years agoHelper I
Cumulative 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
5 years agoSuper User
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] )
)
)
jp2020
5 years agoHelper I
That worked perfectly, thank you!