
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Calculating the number of Days between two dates
Hi
I need to calculate the Total number of days tasks have been open.
I have these 2 columns:
Date Created
Resolution Date
any help would be appreciated
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Perhaps this?
Interval([Date Created]-[Resolution Date], 'DD')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Folarin,
Use the following formula:
[Resolution Date] - [Date Created]
If that doesn't work try:
floor([Resolution Date]) - Floor([Date Created])
Jordy
Climber
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Folarin Could be format issue with your rows.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Perhaps this?
Interval([Date Created]-[Resolution Date], 'DD')

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Folarin,
Use the following formula:
[Resolution Date] - [Date Created]
If that doesn't work try:
floor([Resolution Date]) - Floor([Date Created])
Jordy
Climber

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
For some reason none of them are working.
what is the DD at the end of your expression?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Folarin,
What is the content of your fields? Can you show that?
'DD' stands for days so it would calculate the amount of days in the interval. This could also be 'MM' in Months.
Jordy
Climber
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
@Folarin Could be format issue with your rows.
