Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Calculate Date Difference

Hi All,

 

I have the date in my data, need to find the age as on day in Bewlow Format.

 

Sample 

Date: 05/17/2018

 

Age as on Day : 1 Years, 0 Months (Format)

 

Regards.

 

 

 

 

 

 

 

 

  • Something like this?

    Measure = 
    VAR TodaysDate = TODAY()
    VAR MonthDiff = DATEDIFF ( SELECTEDVALUE ( Table1[date] ), TodaysDate, MONTH )
    RETURN INT ( DIVIDE ( MonthDiff,12 ) ) & " years, " & MOD ( MonthDiff,12 ) & " months"

3 Replies

  • Hi,

    Try this calculated column formula

    =INT((TODAY()-[Date])/365)&"years, "&INT(MOD((TODAY()-[Date]),1))&" months"

    Hope this helps.

  • Something like this?

    Measure = 
    VAR TodaysDate = TODAY()
    VAR MonthDiff = DATEDIFF ( SELECTEDVALUE ( Table1[date] ), TodaysDate, MONTH )
    RETURN INT ( DIVIDE ( MonthDiff,12 ) ) & " years, " & MOD ( MonthDiff,12 ) & " months"

    • Anonymous's avatar
      Anonymous
      Not applicable

      Thanks a lot it worked.