Forum Discussion
jochendecraene
5 years agoHelper V
Convert days to year
Hi I used this code to calculate the difference between 2 dates Duration.Days(Duration.From([Date_Today]-[Date])) This gives me the proper result in days, but can I convert these days in...
- 5 years ago
jochendecraene
Your formula will go as :Number.RoundDown( Duration.Days(Duration.From([Date_Today]-[Date]))/365.25, 0 )
Fowmy
5 years agoSuper User
jochendecraene
Your formula will go as :
Number.RoundDown(
Duration.Days(Duration.From([Date_Today]-[Date]))/365.25,
0
)
jochendecraene
5 years agoHelper V
- Fowmy5 years agoSuper User
jochendecraene
First, calculate the days difference as oer your formula,
Divide it by 365.25 (.25 added to include leap year as it comes once in 4 years), you get the year with fraction.
Round it down to show only full completed year(s).