help with counting records in sub form

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

Guest

in reference to the previous item, what i want is:

to be able to count the number of records in a recordsetclone where the
field value (only one field per record) is null

??
 
what i want is:

to be able to count the number of records in a recordsetclone where the
field value (only one field per record) is null

DCount("*", "tablename", "[ID] = " & Me!ID & " AND [Field] IS NULL")

using your master/child link criteria in place of my ID.

John W. Vinson[MVP]
 
Back
Top