Forum Discussion
Anonymous
7 years agoNot applicable
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
- Ashish_MathurSuper User
Hi,
Try this calculated column formula
=INT((TODAY()-[Date])/365)&"years, "&INT(MOD((TODAY()-[Date]),1))&" months"
Hope this helps.
- jdbuchanan71Super User
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"
- AnonymousNot applicable
Thanks a lot it worked.