How set this DCount criteria?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a RowSource SELECT as follows, which shows only those records which
have no duplicates:

SELECT FNo, EnN FROM TEMP02Tbl GROUP BY FNo, EnN HAVING Count(EnN)=1;

Is there a way I can apply a limitation in a DCount criteria that would
count those same records?

DCount("*", "TEMP02Tbl", "....?....")

Thank you!
 
Back
Top