Forum Discussion
Aging Days Overdue Calculated Column
- 5 years ago
Anonymous , if you want to calculate age against max date or today you can have column
Age = Datediff([Due date], today(), day)
Using switch , you can create a bucket -new column -https://www.youtube.com/watch?v=gelJWktlR80
But it is based on the selected date, then you need to measure
Age = Datediff([Due date], selectedvalue(Date[Date]) , day)
In this case, you need to create a bucket using an independent table - https://www.youtube.com/watch?v=CuczXPj0N-k
Anonymous , if you want to calculate age against max date or today you can have column
Age = Datediff([Due date], today(), day)
Using switch , you can create a bucket -new column -https://www.youtube.com/watch?v=gelJWktlR80
But it is based on the selected date, then you need to measure
Age = Datediff([Due date], selectedvalue(Date[Date]) , day)
In this case, you need to create a bucket using an independent table - https://www.youtube.com/watch?v=CuczXPj0N-k