I have this formula in a report footer:
=Sum([Elapsed_Days])/Count([Elapsed_Days])
What I need to change is to get the count function to not count when the Elapsed Days value is zero. I want the Average to not be wrong because of bad data.
I was thinking that some kind of a SQL stmt would be better but I am having a mental block trying to get it started.
=Sum([Elapsed_Days])/Count([Elapsed_Days])
What I need to change is to get the count function to not count when the Elapsed Days value is zero. I want the Average to not be wrong because of bad data.
I was thinking that some kind of a SQL stmt would be better but I am having a mental block trying to get it started.