Forum Discussion

jochendecraene's avatar
5 years ago
Solved

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...
  • Fowmy's avatar
    5 years ago

    jochendecraene 

    Your formula will go as :

    Number.RoundDown(
    Duration.Days(Duration.From([Date_Today]-[Date]))/365.25,
    0
    )