Count Null Values within a field in a report

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

Guest

Access 2003 Report question: HELP! I have a report in which I need to count
the number of blanks/null values. E.g., Field is dateinjured, some of the
people have entered the dateinjured, some have not. I need to count the
number of records in which dateinjured is not completed / is a null value.
 
Julianne said:
Access 2003 Report question: HELP! I have a report in which I need to count
the number of blanks/null values. E.g., Field is dateinjured, some of the
people have entered the dateinjured, some have not. I need to count the
number of records in which dateinjured is not completed / is a null value.


Use a text box in a group footer and/or the report footer
section with this kind of expression:

=Abs(Sum(Nz(dateinjured. "") = ""))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top