Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Perhaps this?
Interval([Date Created]-[Resolution Date], 'DD')
Hi Folarin,
Use the following formula:
[Resolution Date] - [Date Created]
If that doesn't work try:
floor([Resolution Date]) - Floor([Date Created])
Jordy
Climber
@Folarin Could be format issue with your rows.
Perhaps this?
Interval([Date Created]-[Resolution Date], 'DD')
Hi Folarin,
Use the following formula:
[Resolution Date] - [Date Created]
If that doesn't work try:
floor([Resolution Date]) - Floor([Date Created])
Jordy
Climber
For some reason none of them are working.
what is the DD at the end of your expression?
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
@Folarin Could be format issue with your rows.