I have a formula in my report footer which averages the total time between two dates in my query. The only problem with this formula is, is that it does not include the Null values.
My report(query) makes any records Null which are less than 24 hours between the two dates. That way the user can view only the records which are a problem. (> 24 hours is a problem). The Null values are not displayed in the report.
External Documents = time the documents where recieved.
=Avg(DateDiff("s",[Date of Appointment],[External Documents]))
How can I include the Null values for this formula??
My report(query) makes any records Null which are less than 24 hours between the two dates. That way the user can view only the records which are a problem. (> 24 hours is a problem). The Null values are not displayed in the report.
External Documents = time the documents where recieved.
=Avg(DateDiff("s",[Date of Appointment],[External Documents]))
How can I include the Null values for this formula??