For a single record (detail section) you would normally use:
=IIf(Nz([Total ACD],0) =0, Null, [Total Hold Time]/[Total ACD])
In a group/report header or footer
=IIf(Nz(Sum([Total ACD]),0) =0, Null, Sum([Total Hold Time])/Sum([Total ACD]))

Signature
Duane Hookom
Microsoft Access MVP
> I have a query with the following equation AVG Hold Time: [Total Hold
> Time]/[Total ACD]. Some fields show #error or a zero value (0:00:00). On a
[quoted text clipped - 4 lines]
> Also, in the query I tried Is Not Null criteria for AVG Hold Time, but get
> an overflow error.