I have a calculated column, that uses [Today] in the formula. It works great
with the only exception that it will only update if the list item is edited. Is
there a way to have this be current at all times?
The formula is as follows, and yes it is a little complex.
=IF(ISBLANK([Resolution
Date]),IF(Today-Created<0,0,Today-Created),IF([Resolution
Date]-Created<0,0,([Resolution Date]-Created)))
Basically, what I want the formula to do is check to see if the Resolution Date
column is blank. If it is, then I want it to calculate how many days between
today and the day that the list item was created, otherwise, if the Resolution
Date is not blank, I want it to calculate how many days between the Resolution
Date and the Date the list item was created. (The Resolution Date will be set
by a SPD workflow when another field is changed to a certain value.)