Forum Discussion
Daxtothemax
4 years agoHelper I
Remaining Duration Based off Original
Hi All, I'm really struggling with this. Users are updating duration greater than the original value. I'm looking for a DAX formula to capture the remaining duration based off the original durati...
- Anonymous4 years ago
Hi Daxtothemax ,
Please check the formula.
Column = CALCULATE ( MIN ( 'Table'[Remaining Duration] ), FILTER ( 'Table', 'Table'[Task ID] = EARLIER ( 'Table'[Task ID] ) && 'Table'[Date] <= EARLIER ( 'Table'[Date] ) ) )Best Regards,
Jay
Anonymous
4 years agoNot applicable
Hi Daxtothemax ,
Please check the formula.
Column =
CALCULATE (
MIN ( 'Table'[Remaining Duration] ),
FILTER (
'Table',
'Table'[Task ID] = EARLIER ( 'Table'[Task ID] )
&& 'Table'[Date] <= EARLIER ( 'Table'[Date] )
)
)
Best Regards,
Jay
Daxtothemax
4 years agoHelper I
Perfect, thank you Anonymous