I have this calculation in a query:
DaysToAnswer: DateDiff("d",[RC_Rec_Date],[Res_Date])
I use this query for a report which I have a calculation to find the average DaysToAnswer =Avg([DaysToAnswer]) which works fine, but what if a date field has no date?
Would that not skew the Average results? How do I fix that if the Res_Date is blank.
It will always be the Res_date that will be the blank one but the RC_Rec_Date will always be filled in. Any help is appreciated!
DaysToAnswer: DateDiff("d",[RC_Rec_Date],[Res_Date])
I use this query for a report which I have a calculation to find the average DaysToAnswer =Avg([DaysToAnswer]) which works fine, but what if a date field has no date?
Would that not skew the Average results? How do I fix that if the Res_Date is blank.
It will always be the Res_date that will be the blank one but the RC_Rec_Date will always be filled in. Any help is appreciated!