I have a query that extracts records from a table that match a field in the current record on a form.
I use Dcount to tell if the query has any results, like this, and it works fine, but I would prefer to use Ecount:
If DCount("EVENT", "qryAuditLog") = 0 Then
Ecount works with other queries...