Forum Discussion
Daxtothemax
Helper I
4 years agoRemaining 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 duration listed or any lower duration. It's hard to explain but I've provided an example of Task ID 2 with the output I'm looking for. Any help is greatly appreciated!
- 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
3 Replies
- AnonymousNot 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
Helper I
Perfect, thank you Anonymous
- Daxtothemax
Helper I
Bump