Forum Discussion
varunv11
8 years agoFrequent Visitor
Cumulative Total Starting From 10000
Hello, I am trying to creating a running total which starts from 10000 and the creating the running total based on profit or loss. Sample screenshot given below, Please advise...
- 8 years ago
Hi varunv11
Can you try this ?
Cumulative sales = 10000 + CALCULATE ( SUM ( 'YourTable'[P/L] ), ALL ( 'YourTable)' ), 'YourTable'[Time] <= EARLIER ( 'YourTable'[Time] ) )- Quentin
quentin_vigne
Solution Sage
8 years agoHi varunv11
Can you try this ?
Cumulative sales = 10000 +
CALCULATE (
SUM ( 'YourTable'[P/L] ),
ALL ( 'YourTable)' ),
'YourTable'[Time] <= EARLIER ( 'YourTable'[Time] )
)
- Quentin
- varunv118 years agoFrequent Visitor