Forum Discussion
Wresen
6 years agoPost Patron
Calendar Age between 2 dates
Hi and thanks for reading this. I am trying to find a "correct" calender calculations for Age between 2 dates. From what i can see "DATEDIFF('Table'[monthh];'Table'[Today];MONTH)" only changes A...
- Anonymous6 years ago
Not sure if i understand correctly but you want the difference in days? In that case you can use this code:
DATEDIFF('Table'[monthh];'Table'[Today];DAY)As you can see the last part of a DATEDIFF function is the interval.
Anonymous
6 years agoNot applicable
Not sure if i understand correctly but you want the difference in days? In that case you can use this code:
DATEDIFF('Table'[monthh];'Table'[Today];DAY)
As you can see the last part of a DATEDIFF function is the interval.