Forum Discussion
RHerrera
7 years agoFrequent Visitor
Calculated cumulative column with a complication
Hi, I have been trying to get cumulative values in a calculated column but I couldn't find a way to re-start the cumulative calculation once there is a change from Q1 to Q2 to Q3 (Q=quarter of a day)...
- 7 years ago
try this one
= CALCULATE ( SUM ( Table1[Value] ), FILTER ( Table1, [Q] = EARLIER ( [Q] ) && [Time] <= EARLIER ( [Time] ) ) )
Zubair_Muhammad
Community Champion
7 years ago
try this one
=
CALCULATE (
SUM ( Table1[Value] ),
FILTER ( Table1, [Q] = EARLIER ( [Q] ) && [Time] <= EARLIER ( [Time] ) )
)
RHerrera
7 years agoFrequent Visitor
Thank you very much, I was really close but you got it!