I am using the field, "Total Days Open" to count the days between the date something is submitted and the date that work is completed. The formula is:
IF(AND({Work Completed} = BLANK(), {Submission Date} = BLANK()), "",
IF({Work Completed} = BLANK(), DATETIME_DIFF(TODAY(), {Submission Date}, "d"), DATETIME_DIFF({Work Completed}, {Submission Date}, "d")))
On a separate tab, I want to calculate the average total of days based on the Health Plan link to the records I want to average.
I have been trying to use the Rollup field but it is returning a value of "NaN"